代码搜索:linux

找到约 10,000 项符合「linux」的源代码

代码结果 10,000
www.eeworm.com/read/143387/12879516

linux-gcc makefile.linux-gcc

#!/usr/make # # Makefile for SQLITE # # This is a template makefile for SQLite. Most people prefer to # use the autoconf generated "configure" script to generate the # makefile automatically. But th
www.eeworm.com/read/243908/12908083

c pci-linux.c

#include #include #include #include #include //设备相关 #define MY_VENDOR_ID 0x4348 #define MY_DEVICE_ID 0x5049 #define MY
www.eeworm.com/read/243349/12947470

pdf linux kenerl.pdf

www.eeworm.com/read/243289/12950377

c mylisterner_linux.c

/* * *mylisterner.h 定时器线程 lin shao chuan * * 参照ACE的Select_Reactor实现以下功能: * 监听设备句柄 * 监听消息队列(优先级与无优先级) * 提供定时器接口 * * 暂未实现的接口: * 提供sysv消息队列监听 * 仿照ACE提供suspend resume fd类似的接口 * 删除监听fd的接口 *
www.eeworm.com/read/243289/12950559

c myevent_linux.c

/* * *myevent_linux.c 条件(cond)/事件(event) lin shao chuan * */ #include "myevent.h" #include #include #include #include "mylog.h" typedef struct
www.eeworm.com/read/243289/12950577

c mysem_linux.c

/* * *mysem_linux.c 信号量 lin shao chuan * */ #include "mysem.h" #include #include #include "mylog.h" typedef struct __mysem_t_ { sem_t sem; HMYMEMPOOL h
www.eeworm.com/read/243289/12950582

c mymutex_linux.c

/* * *mymutex_linux.c 互斥锁 lin shao chuan * */ #include "mymutex.h" #include #include "mylog.h" typedef struct __mymutex_t_ { pthread_mutex_t mtx; HMYMEMPOOL hm;