ChinaUnix.net
相关文章推荐:

posix CLOCKREALTIMEHR

请问posix标准的具体内容是什么呀,有什么书可以看看,网上有下载吗

by terolent - Linux论坛 - 2003-04-17 19:13:43 阅读(430) 回复(0)

相关讨论

请问posix标准的具体内容是什么呀,有什么书可以看看,网上有下载吗

by terolent - Linux系统管理 - 2003-04-17 19:13:43 阅读(420) 回复(0)

posix OS指的是遵守posix规范的操作系统的总称,又可称之为类UNIX系统。 操作系统的功能分为两个部分:CPU调度和资源管理。 现代的posix OS一般是多线程的。讨论posix OS时,必然要研究进程和线程。 有汇编基础的人,可以从底层的观点来看待进程。 在现代操作系统中,进程支持多线程。进程是资源管理的最小单元;而线程是程序执行的最小单元。一个进程的组成实体可以分为两大部分:线程集合和资源集合。进程中的线程是动态...

by zhengwenwei_123 - Linux文档专区 - 2009-09-21 11:42:53 阅读(638) 回复(0)

posix thread 一 概述       Pthread是一套通用的线程库, 它广泛的被各种Unix所支持, 是由posix提出的. 因此, 它具有很好的可移植性.  例1:     /**/     #include pthread.h>     void *pp(void *arg)     {         while (1) { ...

by Arthursky - BSD文档中心 - 2009-04-14 09:12:58 阅读(1426) 回复(0)

下面这些是在我在网上整理的,为了更深入的学习posix线程编程.做为初学者我认为有必要把一初级的技术文章整理了出来,作为以后深入的基础. posix表示可移植操作系统接口:(Portable Operating System Interface),电气和电子工程师协会(Institute of Electrical and Electronics Engineers,IEEE)最初开发,由ANSI(Amecrican National Standard Institutes)和ISO(International Statdards Organization)标准化,是为了...

by TurboDisk - 网络技术文档中心 - 2006-03-06 10:28:55 阅读(906) 回复(0)

各位大牛: 小弟近日遇到一个PHP 编译问题,特来请教 OS: SunOS sbardx4b 5.8 Generic_117350-06 sun4u sparc SUNW,Sun-Fire-V440 PHP: php-5.2.1 问题描述: Step 1:./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-oci8=/usr/local/oracle/apps/product/9.2.0/ --with-oracle=/usr/local/oracle/apps/product/9.2.0/...

by pch_818 - 服务器应用 - 2009-02-06 16:20:30 阅读(1568) 回复(0)

本帖最后由 smalloc 于 2014-10-16 07:52 编辑 面试原题:posix调度的特点是什么? or pthread的调度的特点是什么? 记不清是哪个了,不管是哪种,老实说,我都没听说过

by smalloc - C/C++ - 2014-10-29 13:40:58 阅读(1670) 回复(3)

mqd_t mqd; struct mq_attr mqa; mqd=mq_open("/messagetest",O_RDWR | O_CREAT,0644,NULL); memset(&mqa,0,sizeof(struct mq_attr)); mqa.mq_maxmsg=10000; mqa.mq_msgsize=8192; mq_setattr(mqd,&mqa,&omqa); 想设置消息队列最大消息数,设置不成功,难道消息队列最大消息数就只有10????

by daxiguagg - Linux环境编程 - 2013-09-19 19:47:15 阅读(5871) 回复(4)

posix线程(thread)

by linux_cjok - 移动操作系统 - 2011-12-20 09:44:12 阅读(567) 回复(0)

Format: int getopt(int argc, char *const argv[], const char *optstring); extern char *optarg; extern int optind, opterr, optopt; global variables: 1. optind: a. the index of the next element to be processed in argv. b. initialized to 1: at the beginning or scan a new argument vector. 2. opterr: a. the return value is '?' when getopt() didn't recognize the option character. b. when s...

getoptlinux

by yifei_wang - MaxWit & g-bios - 2011-10-19 18:35:23 阅读(1802) 回复(6)

本帖最后由 Horizon2012 于 2011-06-22 16:09 编辑 在进程间是不是没有信号量操作的相关函数的?只有信号量集的操作? 我在进程学习中看到有semget semop....... 我只在线程中发现有信号量的操作sem_post sem_wait .......

by Horizon2012 - Linux环境编程 - 2011-06-22 16:07:53 阅读(4192) 回复(6)