sleepy.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * sleepy.c -- the writers awake the readers
  3.  *
  4.  * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
  5.  * Copyright (C) 2001 O'Reilly & Associates
  6.  *
  7.  * The source code in this file can be freely used, adapted,
  8.  * and redistributed in source or binary form, so long as an
  9.  * acknowledgment appears in derived source files.  The citation
  10.  * should list that the code comes from the book "Linux Device
  11.  * Drivers" by Alessandro Rubini and Jonathan Corbet, published
  12.  * by O'Reilly & Associates.   No warranty is attached;
  13.  * we cannot take responsibility for errors or fitness for use.
  14.  *
  15.  * $Id: sleepy.c,v 1.13 2001/07/18 22:28:16 rubini Exp $
  16.  */
  17. #ifndef __KERNEL__
  18. #  define __KERNEL__
  19. #endif
  20. #ifndef MODULE
  21. #  define MODULE
  22. #endif
  23. #include <linux/module.h>
  24. #include <linux/sched.h>  /* current and everything */
  25. #include <linux/kernel.h> /* printk() */
  26. #include <linux/fs.h>     /* everything... */
  27. #include <linux/types.h>  /* size_t */
  28. #include "sysdep.h"
  29. int sleepy_major=0;
  30. DECLARE_WAIT_QUEUE_HEAD(wq);
  31. ssize_t sleepy_read (struct file *filp, char *buf, size_t count, loff_t *pos)
  32. {
  33.     printk(KERN_DEBUG "process %i (%s) going to sleepn",
  34.            current->pid, current->comm);
  35.     interruptible_sleep_on(&wq);
  36.     printk(KERN_DEBUG "awoken %i (%s)n", current->pid, current->comm);
  37.     return 0; /* EOF */
  38. }
  39. ssize_t sleepy_write (struct file *filp, const char *buf, size_t count,
  40. loff_t *pos)
  41. {
  42.     printk(KERN_DEBUG "process %i (%s) awakening the readers...n",
  43.            current->pid, current->comm);
  44.     wake_up_interruptible(&wq);
  45.     return count; /* succeed, to avoid retrial */
  46. }
  47. #ifdef LINUX_20 /* wrappers for 2.0 */
  48. int sleepy_read_20 (struct inode *ino, struct file *f, char *buf, int count)
  49. {
  50.     return (int)sleepy_read(f, buf, count, &f->f_pos);
  51. }
  52. int sleepy_write_20 (struct inode *ino, struct file *f, const char *b, int c)
  53. {
  54.     return (int)sleepy_write(f, b, c, &f->f_pos);
  55. }
  56. #define sleepy_read sleepy_read_20
  57. #define sleepy_write sleepy_write_20
  58. #endif  /* LINUX_20 */
  59. struct file_operations sleepy_fops = {
  60.     read:  sleepy_read,
  61.     write: sleepy_write,
  62. };
  63. int sleepy_init(void)
  64. {
  65.     int result;
  66.     SET_MODULE_OWNER(&sleepy_fops);
  67.     /*
  68.      * Register your major, and accept a dynamic number
  69.      */
  70.     result = register_chrdev(sleepy_major, "sleepy", &sleepy_fops);
  71.     if (result < 0) return result;
  72.     if (sleepy_major == 0) sleepy_major = result; /* dynamic */
  73.     return 0;
  74. }
  75. void sleepy_cleanup(void)
  76. {
  77.     unregister_chrdev(sleepy_major, "sleepy");
  78. }
  79. module_init(sleepy_init);
  80. module_exit(sleepy_cleanup);