发布时间:2014-11-28 12:02:31
connbytes Match by how many bytes or packets aconnection (or one of the two flows constituting the connection) have tranferred so far, or byaver- age bytes per packet.The counters are 64bit an.........【阅读全文】
发布时间:2014-11-25 15:26:45
最近换了个工作环境,现在在大望路这边上班,呵,刚上班接到的任务就是熟悉gsoap!废话少说,现在开始gSoap学习!gSOAP是一个夸平台的,用于开发Web Service服务端和客户端的工具,在Windows、Linux、MAC OS和UNIX下使用C和C++语言编码,集合了SSL功能。下载地址:http://sourceforge.net/projects/gsoap2官方网.........【阅读全文】
发布时间:2014-11-25 15:23:55
#include<semaphore.h>int sem_wait(sem_t*sem);intsem_trywait(sem_t *sem);intsem_timedwait(sem_t *sem, const struct timespec *abs_timeout);与 -lrt 或 -pthread 一起链接。glibc 需要特性测试宏(参看 feature_test_macros(7)):sem_timedw.........【阅读全文】
发布时间:2014-11-25 15:08:54
简介死锁 (deallocks): 是指两个或两个以上的进程(线程)在执行过程中,因争夺资源而造成的一种互相等待的现象,若无外力作用,它们都将无法推进下去。此时称系统处于死锁状态或系统产生了死锁,这些永远在互相等待的进程(线程)称为死锁进程(线程)。 由于资源占用是互斥的,当某个进程提出申请资源后,使得有关.........【阅读全文】