虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Posix

可移植操作系统接口(英语:PortableOperatingSystemInterface,缩写为Posix)是IEEE为要在各种UNIX操作系统上运行软件,而定义API的一系列互相关联的标准的总称,其正式称呼为IEEEStd1003,而国际标准名称为ISO/IEC9945。此标准源于一个大约开始于1985年的项目。Posix这个名称是由理查德·斯托曼(RMS)应IEEE的要求而提议的一个易于记忆的名称。它基本上是PortableOperatingSystemInterface(可移植操作系统接口)的缩写,而X则表明其对UnixAPI的传承。
  • GNU Make 使用手册(中译版) Make 可自动决定一个大程序中哪些文件需要重新编译

    GNU Make 使用手册(中译版) Make 可自动决定一个大程序中哪些文件需要重新编译,并发布重新编译它们的命令。本版本GNU Make使用手册由Richard M. Stallman and Roland McGrath编著,是从Paul D. Smith撰写的V3.76版本发展过来的。 GNU Make符合IEEE Standard 1003.2-1992 (Posix.2) 6.2章节的规定

    标签: Make GNU 使用手册 自动

    上传时间: 2015-09-26

    上传用户:aix008

  • 这是NTFS文件0.5版本技术文件

    这是NTFS文件0.5版本技术文件,它是 Linux-NTFS 计划的一部分。 这是技术文件,NTFS FAQ里包含了公众问题的简单答案。 NTFS是Windows NT, 2000 and XP的文件系统,它支持几乎所有Posix、HFS、HPFS特征: * 它可以处理大容量存储单元(最大到246 GB)。 * 它包含嵌入式的数据压缩。 * 它使用log文件处理事务。 * 比特码流,任何事务都是磁盘上的小目标。

    标签: NTFS 0.5 版本

    上传时间: 2015-10-16

    上传用户:libinxny

  • Make 可自动决定一个大程序中哪些文件需要重新编译

    Make 可自动决定一个大程序中哪些文件需要重新编译,并发布重新编译它们的命令。本版本GNU Make使用手册由Richard M. Stallman and Roland McGrath编著,是从Paul D. Smith撰写的V3.76版本发展过来的。 GNU Make符合IEEE Standard 1003.2-1992 (Posix.2) 6.2章节的规定。

    标签: Make 自动 程序 编译

    上传时间: 2014-01-10

    上传用户:caiiicc

  • 多线程程序设计

    多线程程序设计,Posix 多线程程序设计

    标签: 多线程 程序设计

    上传时间: 2016-02-23

    上传用户:hfmm633

  • Demo Source Code VxDemo Groups: 1. Multi-Processing 2. Networking 3. Input-Output

    Demo Source Code VxDemo Groups: 1. Multi-Processing 2. Networking 3. Input-Output 4. File System 5. MMU 6. Multi-Tasking 7. ANSI-C 8. Posix 9. ExecHandling

    标签: Multi-Processing Input-Output Networking Source

    上传时间: 2014-02-26

    上传用户:plsee

  • linux下的BBS

    linux下的BBS,使用BBS CACHE,使得mem消耗很低。 天火系統的特點: 1. 統一物件型態設計,讓各種東西都可以在我的最愛出現。 2. 統一各狀態間的功能鍵。( 程式執行過程只 "程式狀態" "物件型態" 來判定動作 )。 3. 內建各種系統(POP3/SMTP/NNTP/..),未來只需要執行單一程式,就會擁有各種功能。 4. 每個人都可以簡單設定個人板。 5. 未來任兩個 BBS 間都可以透過帳號作某一種程度的同步(Sync)。 6. 使用 pthread 設計,並且儘量遵守 Posix ,達到簡單移植到任何系統的目的。 7. 速度快 不使用 signal/shm/sem ,每個 client 上來只吃 50k 不到的記憶體。 8. 朝無站長系統目標設計。

    标签: linux BBS

    上传时间: 2014-01-24

    上传用户:515414293

  • GNU Common C++ is a very portable and highly optimized class framework for writing C++ applications

    GNU Common C++ is a very portable and highly optimized class framework for writing C++ applications that need to use threads and support concurrent sychronization, and that use sockets, XML parsing, object serialization, thread-optimized String and data structure classes, etc. This framework offers a class foundation that hides platform differences from your C++ application so that you need not write platform specific code. GNU Common C++ has been ported to compile nativily on most platforms which support either Posix threads, or on maybe be used with Debian hosted mingw32 to build native threading applications for Microsoft Windows.

    标签: applications framework optimized portable

    上传时间: 2014-01-02

    上传用户:luke5347

  • 一个收集所有最基本功能的函数库;所有的函数都是尽量短小和简单 使用 doxygen 生成文档 所有代码以在 Linux 系统上可以编译并运行为准;每当在 lib 目录里增加了一个功能函数

    一个收集所有最基本功能的函数库;所有的函数都是尽量短小和简单 使用 doxygen 生成文档 所有代码以在 Linux 系统上可以编译并运行为准;每当在 lib 目录里增加了一个功能函数,必须在 test 目录里编写一个针对此功能函数的测试程序,使其可以在 Linux 系统上正常编译并正确运行;每个增加的外部功能函数,必须在源代码前写有注释,注释格式为符合 doxygen 要求的 JavaDoc 格式。 所有代码内部调用的 C 库和系统函数要求完全符合 ANSI C 标准和 Posix 标准。

    标签: doxygen Linux lib 函数

    上传时间: 2016-07-06

    上传用户:zhuoying119

  • As you have learnt that sleep( )/usleep()/nanosleep() are not good to delay a process. Timers can pr

    As you have learnt that sleep( )/usleep()/nanosleep() are not good to delay a process. Timers can provide more accurate time control in applications. In this lab, you will explore Posix timers and signal programming, experience the timer drift. The primary focus of this lab will be "time". The experiment will show you several methods to measure time in your applications.

    标签: nanosleep process Timers learnt

    上传时间: 2013-12-19

    上传用户:huyiming139

  • linux下的多线程调试工具

    linux下的多线程调试工具,支持Posix NPTL, NPTL Trace Tool (PTT - Posix Thread Trace Toolkit)

    标签: linux 多线程 调试工具

    上传时间: 2016-12-10

    上传用户:zhichenglu