发布时间:2016-09-06 16:50:16
IPC/sem.ckernel中include/uapi/linux/sem.h/* semop system calls takes an array of these. */struct sembuf { unsigned short sem_num; /* semaphore index in array */要操作的信号灯的编号 short sem_op;&nb.........【阅读全文】
发布时间:2016-09-06 11:17:06
kernel中include/uapi/linux/sem.h/* semop system calls takes an array of these. */struct sembuf { unsigned short sem_num; /* semaphore index in array */要操作的信号灯的编号 short sem_op; .........【阅读全文】
发布时间:2016-09-05 20:28:06
原文http://blog.csdn.net/ccccdddxxx/article/details/6308381信号是异步的,它会在程序的任何地方发生。由此程序正常的执行路径被打破,去执行信号处理函数。一般情况下 ,进程正在执行某个系统调用,那么在该系统调用返回前信号是不会被递送的。但慢速系统调用除外,如读写终端、网络、磁盘,以及wait和pause。这.........【阅读全文】
发布时间:2016-08-17 14:49:41
arch\arm\mach-zynq\pl330.c#define PL330_DBGSTATUS_OFFSET 0xD00 /* Debug Status Register */#define PL330_DBGCMD_OFFSET 0xD04 /* Debug Command Register */ module_init(pl330_init); -> pl330_init() -> pl330_driver_init(); //////////.........【阅读全文】
发布时间:2016-08-17 14:47:23
arch\arm\mach-zynq\pl330.c#define DRIVER_NAME "pl330" /////////////static struct platform_driver pl330_platform_driver = { .probe = pl330_platform_probe, .........【阅读全文】