Chinaunix首页 | 论坛 | 博客
  • 博客访问: 449017
  • 博文数量: 179
  • 博客积分: 3236
  • 博客等级: 中校
  • 技术积分: 1860
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-25 19:13
文章分类

全部博文(179)

文章存档

2011年(34)

2008年(8)

2007年(27)

2006年(110)

分类: LINUX

2006-09-27 10:24:34

Quick Reference (chapter 5)
 
#include
 This header declares all the macros used to define ioctl commands. It is currently included by
 
_IOC_NRBITS
_IOC_TYPEBITS
_IOC_SIZEBITS
_IOC_DIRBITS
 The number of bits available for the different bitfields of ioctl commands. There are also four macros that specify the MASKs and four that specify the SHIFTs,but they're mainly for internal use._IOC_SIZEBITS is an important value to check, because it changes across architectures.
 
_IOC_NONE
_IOC_READ
_IOC_WRITE
 The possible values for the "direction" bitfield."Read" and "Write" are different bits and can be OR'd to specify read/write.The values are 0 based.
 
_IOC(dir,type,nr,size)
_IO(type,nr)
_IOR(type,nr,size)
_IOW(type,nr,size)
_IOWR(type,nr,size)
 Macros used to create an ioctl command.
 
_IOC_DIR(nr)
_IOC_TYPE(nr)
_IOC_NR(nr)
_IOC_SIZE(nr)
 Macros used to decode a command. In particular, _IOC_TYPE(nr) is an OR combination of _IOC_READ and _IOC_WRITE.
 
#include
int access_ok(int type,const void *addr,unsigned long size);
 This function checks that a pointer to user space is actually usable. access_ok returns a nonzero value if the access should be allowed.
 
VERIFY_READ
VERIFY_WRITE
 The possible values for the type argument in access_ok VERIFY_WRITE is a superset of VERIFY_READ.
 
#include
int put_user(datum,ptr);
int get_user(local,ptr);
int _ _put_user(datum,ptr);
int _ _get_user(local,ptr);
 Macros used to store or retrieve a datum to or from user space. The number of bytes being transferred depends on sizeof(*ptr). The regular version call access_ok first,while the qualified version(_ _put_user and _ _get_user) assume that access_ok has already been called.
 
#include
 Defines the various CAP_symbols for capabilities under Linux 2.2 and later.
 
int capable(int capability);
 Returns nonzero if the process has the given capability.
 
#include
typedef struct {/* ... */ }wait_queue_head_t;
void init_waitqueue_head(wait_queue_head_t *queue);
DECLARE_WAIT_QUEUE_HEAD(queue);
 The defined type for Linux wait queues . A wait_queue_head_t must be explicitly initialized with either init_waitqueue_head at runtime or declare_wait_queue_head at compile time.
 
#include
void interruptible_sleep_on(wait_queue_head_t *q);
void sleep_on(wait_queue_head_t *q);
void interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout);
void sleep_on_timeout(wait_queue_head_t *q,long timeout);
 Calling any of these functions puts the current process to sleep on a queue.Usually, you'll choose the interruptible form to impliment blocking read and write.
 
void wake_up(struct wait_queue **q);
void wake_up_interruptible(struct wait_queue **q);
void wake_up_sync(struct wait_queue **q);
void wake_up_interruptible_sync(struct wait_queue **q);
 These functions wake processes that are sleeping on the queue q.The _interruptible form wakes only interruptible processes. The _sync versions will not reschedule the CPU before returning.
 
typedef struct {/* ... */ }wait_queue_t;
init_waitqueue_entry(wait_queue_t *entry, struct task_struct *task);
 The wait_queue_t type is used when sleeping without calling sleep_on.Wait queue entries must be initialized prior to use; the task argument used is almost always current.
 
void add_wait_queue(wait_queue_head_t *q,wait_queue_t *wait);
void add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait);
void remove_wait_queue(wait_queue_head_t *q,wait_queue_t *wait);
 These functions add and entry to a wait queue;add_wait_queue_exclusive adds the entry to the end of the queue for exclusive waits. Entries should be removed from the queue after sleeping with remove_wait_queue.
 
void wait_event(wait_queue_head_t *q,int condition);
int wait_event_interruptible(wait_queue_head_t q, int condition);
 These two macros will cause the process to sleep on the given queue until the given condition evaluates to a true value.
 
void schedule(void);
 This function selects a runnable process from the run queue. The chosen process can be current or a different one. You won't usuallly call schedule directly, because the sleep_on functions do it internally.
 
#include
void poll_wait(struct file *filp,wait_queue_head_t *q,poll_table *p)
 This function puts the current process into a wait queue without scheduling immediately.It is designed to be used by the poll method of device drivers.
 
int fasync_helper(struct inode *inode, struct file *filp, int mode,struct fasync_struct **fa);
 This function is "helper" for implementing the fasync device method. The mode argument is the same value that is passed to the method, while fa points to a device-specific fasync_struct *).
 
void kill_fasync(struct fasync_struct *fa, int sig, int band);
 If the driver supports asynchronous notification, this function can be used to send a signal to processes registered in fa.
 
#include
typedef struct {/* ... */} spinlock_t;
void spin_lock_init(spinlock_t *lock);
 The spinlock_t type defines a spinlock, which must be initialized (with spin_lock_init) prior to use.
 
spin_lock(spinlock_t *lock);
spin_unlock(spinlock_t *lock);
 spin_lock locks the given lock, perhaps waiting until it becomes available. The lock can then be released with spin_unlock.


阅读(1079) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~