代码搜索:linux
找到约 10,000 项符合「linux」的源代码
代码结果 10,000
www.eeworm.com/read/321110/13412328
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/321110/13412330
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;
www.eeworm.com/read/321110/13412337
c myprocess_linux.c
/**
* @file myprocess_linux.c 描述如何起进程 2008-03-25 23:25
*
* @author lin shao chuan (email:lsccsl@tom.com, msn:lsccsl@163.net)
*
* @brief if it works, it was written by lin shao chuan, if not, i do
www.eeworm.com/read/321110/13412338
c myosfile_linux.c
/**
* @file myOsFile_linux.c 封装linux系统的文件操作接口 2008-4-14 00:43
*
* @author lin shao chuan (email:lsccsl@tom.com, msn:lsccsl@163.net)
*
* @brief if it works, it was written by lin shao chuan, if no
www.eeworm.com/read/321110/13412345
c mynamepipe_linux.c
/**
*
* @file mynamepipe.c 命名管道 2007-8-23 23:41
*
* @author diablo
*
*/
#include "mynamepipe.h"
#include
#include
#include
#include
#
www.eeworm.com/read/321110/13412350
c mypipe_linux.c
/*
*
*mypipe.c 读写管道 lin shao chuan
*
*/
#include "mypipe.h"
#include
#include
#include "os_def.h"
#include "mylog.h"
typedef struct __mypipe_t_
{
int fd[2]
www.eeworm.com/read/321110/13412352
c mymmap_linux.c
/**
* @file mymmap_linux.c 描述linux的共享内存 2008-03-25 23:25
*
* @author lin shao chuan (email:lsccsl@tom.com, msn:lsccsl@163.net)
*
* @brief if it works, it was written by lin shao chuan, if not, i
www.eeworm.com/read/321110/13412360
c mythread_linux.c
/*
*
*mythread_win32.c 封装线程接口 lin shao chuan
*
*/
#include "mythread.h"
#include
#include
#include
#include "mylog.h"
typedef struct __mythread_t
www.eeworm.com/read/320891/13416887
c myls_linux.c
#include
#include
#include
#include
#include
#include
#include
#include
#include
int main(in
www.eeworm.com/read/319814/13441735
h drcom_linux.h
#ifndef DRCOM_LINUX_H
#define DRCOM_LINUX_H
/* remember to define these in the makefile (just for 2.4 kernels)
#define MODULE
#define __KERNEL__
*/
#if (!(defined(__KERNEL__) && defined(MODULE)))
#e