按类别查询搜索结果
关于关键词 的检测结果,共 6160
jackywgw | 2014-12-16 15:11:54 | 阅读(460) | 评论(0)
点击(此处)折叠或打开#include "../unipc.h"#include "pthread_rwlock.h"int my_pthread_rwlock_trywrlock(pthread_rwlock_t *rw){    int rc;    if...【阅读全文】
jackywgw | 2014-12-16 15:10:42 | 阅读(450) | 评论(0)
点击(此处)折叠或打开#include "../unipc.h"#include "pthread_rwlock.h"int my_pthread_rwlock_wrlock(pthread_rwlock_t *rw){    int rc;    if(rw...【阅读全文】
jackywgw | 2014-12-16 15:07:42 | 阅读(370) | 评论(0)
点击(此处)折叠或打开#include "../unipc.h"#include "pthread_rwlock.h"int my_pthread_rwlock_unlock(pthread_rwlock_t *rw){    int rc;  &nbs...【阅读全文】
jackywgw | 2014-12-16 10:54:48 | 阅读(350) | 评论(0)
点击(此处)折叠或打开#include "../unipc.h"#include "pthread_rwlock.h"int my_phread_rwlock_tryrdlock(my_pthread_rwlock_t *rw){    int rc;    if(rw->rw_mag...【阅读全文】
jackywgw | 2014-12-16 10:48:28 | 阅读(480) | 评论(0)
点击(此处)折叠或打开#include "../unipc.h"#include "pthread_rwlock.h"int my_phread_rwlock_rdlock(my_pthread_rwlock_t *rw){    int rc;    if(rw->rw_magic ...【阅读全文】
shenya0203 | 2014-12-15 22:50:39 | 阅读(0) | 评论(0)
点击(此处)折叠或打开struct optr_opt_s *search_func_optr_list(char *buf){    int rc = -1;    int i;    int len = strlen(buf);   &nb...【阅读全文】
shenya0203 | 2014-12-14 22:49:36 | 阅读(0) | 评论(0)
点击(此处)折叠或打开// calc.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include "stack.h"#if...【阅读全文】
cmq1010950233 | 2014-12-12 16:16:50 | 阅读(1880) | 评论(0)
点击(此处)折叠或打开#include int main(){    char str1[10],str2[10];    int i;    scanf("%s",str1);    fo...【阅读全文】
erlei_2013 | 2014-12-12 09:36:35 | 阅读(1810) | 评论(0)
u-boot http uip【阅读全文】
shenya0203 | 2014-12-10 22:48:32 | 阅读(0) | 评论(0)
在家中的 对于参数的解析方法。unsigned char g_optr[] = "+-*/";struct optr_stack{    int sp;    char stack[128];};struct optr_stack g_optr_st = {.sp = 0, .stack = {0}};...【阅读全文】
程睿 | 2014-12-10 09:13:32 | 阅读(120) | 评论(0)
在C++的类定义里面,可以看到类似下面的定义:01class List {02private:03 ...【阅读全文】
hm2462964492 | 2014-12-05 11:54:24 | 阅读(1350) | 评论(0)
  TEA(Tiny Encryption Algorithm)是一种小型的对称加密解密算法,支持128位密码,与BlowFish一样TEA每次只能加密/解密8字节数据。TEA特点是速度快、效率高,实现也非常简单。由于针对TEA的攻击不断出现,所以TEA也发展出几个版本,分别是XTEA、Block TEA和XXTEA。    TEA加密和解密时都使用一...【阅读全文】
bjutslg | 2014-12-04 18:39:48 | 阅读(1220) | 评论(0)
进程/线程同步的方式和机制,进程间通信 一、进程/线程间同步机制。临界区、互斥区、事件、信号量四种方式临界区(Critical Section)、互斥量(Mutex)、信号量(Semaphore)、事件(Event)的区别1、临界区:通过对多线程的串行化来访问公共资源或一段代码,速度快,适合控制数据访问。在任意时刻只允...【阅读全文】
alienzf | 2014-12-03 22:00:42 | 阅读(1810) | 评论(0)
动手写一个简单的数据库。【阅读全文】
天空中的一朵云 | 2014-12-02 16:31:36 | 阅读(1660) | 评论(0)
点击(此处)折叠或打开#include int main()                                   ...【阅读全文】
cmq1010950233 | 2014-12-02 16:17:25 | 阅读(1520) | 评论(0)
点击(此处)折叠或打开#include<stdio.h>int main(){    int a, b;    a=1;    b=1;    while(1)  ...【阅读全文】
speckle | 2014-12-02 13:57:09 | 阅读(0) | 评论(0)
转自:http://www.chinaunix.net/old_jh/23/408225.html陈皓 概述 —— 什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefile还是要懂。这就好像现在有这么多的HTML的编辑器,但如果你想成为一...【阅读全文】
黄豆酱没有酱 | 2014-11-28 15:48:41 | 阅读(2210) | 评论(0)
Makefile中只要把INCLUDE 和LIBS填写好就好;其他的都是万能的;INCLUDE 和LIBS如何填写呢?

其实很简单,INCLUDE 这里填写的是。c文件编译到。o文件过程需要的头文件;LIBS这里填写的是。o到可执行文件过程中需要的依赖动态连接文件【阅读全文】
cpu0018 | 2014-11-28 14:58:10 | 阅读(620) | 评论(0)
http://blog.csdn.net/feixiaoxing/article/category/878822/4【阅读全文】