From: KJK::Hyperion Date: Wed, 20 Feb 2002 09:17:58 +0000 (+0000) Subject: purely cosmetic commit: edited the introductory comments of several files to uniform... X-Git-Tag: ReactOS-0.0.19~9 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=19ad3d7a30a3b0a822044cbdd5c3d264396cecdd purely cosmetic commit: edited the introductory comments of several files to uniform them to a common format, added $Id$ macro to all files, cleanup from legacy stuff, fully commented templates svn path=/trunk/; revision=2636 --- diff --git a/posix/include/aio.h b/posix/include/aio.h index 8911cb6f6e9..6964c28032f 100644 --- a/posix/include/aio.h +++ b/posix/include/aio.h @@ -1,8 +1,10 @@ +/* $Id: aio.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * aio.h * - * asynchronous input and output (REALTIME). Based on the Single UNIX(r) - * Specification, Version 2 + * asynchronous input and output (REALTIME). Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -23,37 +25,27 @@ #ifndef __AIO_H_INCLUDED__ #define __AIO_H_INCLUDED__ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ -#include -#include -#include -#include - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ +/* INCLUDES */ #include #include #include #include -#endif +/* OBJECTS */ -/* types */ +/* TYPES */ typedef struct _tag_aiocb { - int aio_fildes /* file descriptor */ - off_t aio_offset /* file offset */ - volatile void* aio_buf /* location of buffer - size_t aio_nbytes /* length of transfer */ - int aio_reqprio /* request priority offset */ - struct sigevent aio_sigevent /* signal number and value */ - int aio_lio_opcode /* operation to be performed */ + int aio_fildes; /* file descriptor */ + off_t aio_offset; /* file offset */ + volatile void* aio_buf; /* location of buffer */ + size_t aio_nbytes; /* length of transfer */ + int aio_reqprio; /* request priority offset */ + struct sigevent aio_sigevent; /* signal number and value */ + int aio_lio_opcode; /* operation to be performed */ } aiocb; -/* constants */ +/* CONSTANTS */ #define AIO_CANCELED 0 #define AIO_NOTCANCELED 1 #define AIO_ALLDONE 2 @@ -64,7 +56,7 @@ typedef struct _tag_aiocb #define LIO_WRITE 3 #define LIO_NOP 4 -/* prototypes */ +/* PROTOTYPES */ int aio_cancel(int, struct aiocb *); int aio_error(const struct aiocb *); int aio_fsync(int, struct aiocb *); @@ -74,6 +66,8 @@ int aio_suspend(const struct aiocb *const[], int, const struct timespec *); int aio_write(struct aiocb *); int lio_listio(int, struct aiocb *const[], int, struct sigevent *); +/* MACROS */ + #endif /* __AIO_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/arpa/inet.h b/posix/include/arpa/inet.h index f47026edb10..b5c3b54a7ef 100644 --- a/posix/include/arpa/inet.h +++ b/posix/include/arpa/inet.h @@ -1,8 +1,10 @@ +/* $Id: inet.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * arpa/inet.h * - * definitions for internet operations. Based on the Single UNIX(r) - * Specification, Version 2 + * definitions for internet operations. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -23,25 +25,17 @@ #ifndef __ARPA_INET_H_INCLUDED__ #define __ARPA_INET_H_INCLUDED__ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ -#include -#include - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ +/* INCLUDES */ #include #include -#endif +/* OBJECTS */ -/* types */ +/* TYPES */ -/* constants */ +/* CONSTANTS */ -/* prototypes */ +/* PROTOTYPES */ uint32_t htonl(uint32_t hostlong); uint16_t htons(uint16_t hostshort); uint32_t ntohl(uint32_t netlong); @@ -54,7 +48,7 @@ in_addr_t inet_netof(struct in_addr in); in_addr_t inet_network(const char *cp); char *inet_ntoa(struct in_addr in); -/* macros */ +/* MACROS */ #endif /* __ARPA_INET_H_INCLUDED__ */ diff --git a/posix/include/assert.h b/posix/include/assert.h index 1552348205a..8b0a2b34b92 100644 --- a/posix/include/assert.h +++ b/posix/include/assert.h @@ -1,8 +1,10 @@ +/* $Id: assert.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * assert.h * - * verify program assertion. Based on the Single UNIX(r) Specification, - * Version 2 + * verify program assertion. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/cpio.h b/posix/include/cpio.h index 8a9aef9f83b..de2e51f1382 100644 --- a/posix/include/cpio.h +++ b/posix/include/cpio.h @@ -1,8 +1,10 @@ +/* $Id: cpio.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * cpio.h * - * cpio archive values. Based on the Single UNIX(r) Specification, - * Version 2 + * cpio archive values. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -23,19 +25,11 @@ #ifndef __CPIO_H_INCLUDED__ #define __CPIO_H_INCLUDED__ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ - -#endif +/* INCLUDES */ -/* types */ +/* TYPES */ -/* constants */ +/* CONSTANTS */ #define C_IRUSR (0000400) /* read by owner */ #define C_IWUSR (0000200) /* write by owner */ #define C_IXUSR (0000100) /* execute by owner */ @@ -59,9 +53,9 @@ #define MAGIC "070707" -/* prototypes */ +/* PROTOTYPES */ -/* macros */ +/* MACROS */ #endif /* __CPIO_H_INCLUDED__ */ diff --git a/posix/include/ctype.h b/posix/include/ctype.h index aba48349920..2c4b7f3bfb7 100644 --- a/posix/include/ctype.h +++ b/posix/include/ctype.h @@ -1,7 +1,10 @@ +/* $Id: ctype.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * ctype.h * - * character types. Based on the Single UNIX(r) Specification, Version 2 + * character types. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -22,21 +25,15 @@ #ifndef __CTYPE_H_INCLUDED__ #define __CTYPE_H_INCLUDED__ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ +/* INCLUDES */ -#endif +/* OBJECTS */ -/* types */ +/* TYPES */ -/* constants */ +/* CONSTANTS */ -/* prototypes */ +/* PROTOTYPES */ int isalnum(int); int isalpha(int); int isascii(int); @@ -53,7 +50,7 @@ int toascii(int); int tolower(int); int toupper(int); -/* macros */ +/* MACROS */ /* FIXME: the standard isn't clear about these */ #define _toupper(c) (toupper(c)) #define _tolower(c) (tolower(c)) diff --git a/posix/include/dirent.h b/posix/include/dirent.h index 25ff8634dd6..2e44110bb7f 100644 --- a/posix/include/dirent.h +++ b/posix/include/dirent.h @@ -1,8 +1,10 @@ +/* $Id: dirent.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * dirent.h * - * format of directory entries. Based on the Single UNIX(r) Specification, - * Version 2 + * format of directory entries. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/dlfcn.h b/posix/include/dlfcn.h index 5d87d4582d8..36b68e1cedb 100644 --- a/posix/include/dlfcn.h +++ b/posix/include/dlfcn.h @@ -1,7 +1,10 @@ +/* $Id: dlfcn.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * dlfcn.h * - * dynamic linking. Based on the Single UNIX(r) Specification, Version 2 + * dynamic linking. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -27,16 +30,16 @@ /* TYPES */ /* CONSTANTS */ -#define RTLD_LAZY (0x00000000) /* Relocations are performed at an +#define RTLD_LAZY (0x00000000) /* Relocations are performed at an \ implementation-dependent time. */ -#define RTLD_NOW (0x00000001) /* Relocations are performed when +#define RTLD_NOW (0x00000001) /* Relocations are performed when \ the object is loaded. */ -#define RTLD_GLOBAL (0x00000010) /* All symbols are available for - relocation processing of other +#define RTLD_GLOBAL (0x00000010) /* All symbols are available for \ + relocation processing of other \ modules. */ -#define RTLD_LOCAL (0x00000020) /* All symbols are not made available - for relocation processing by other +#define RTLD_LOCAL (0x00000020) /* All symbols are not made available \ + for relocation processing by other \ modules. */ #define RTLD_NEXT ((void *)(-1)) diff --git a/posix/include/errno.h b/posix/include/errno.h index bc664daeda0..7881d0192cb 100644 --- a/posix/include/errno.h +++ b/posix/include/errno.h @@ -1,8 +1,10 @@ +/* $Id: errno.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * errno.h * - * system error numbers. Based on the Single UNIX(r) Specification, - * Version 2 + * system error numbers. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/fcntl.h b/posix/include/fcntl.h index 19f97f81b91..b39ba9cd457 100644 --- a/posix/include/fcntl.h +++ b/posix/include/fcntl.h @@ -1,10 +1,10 @@ -/* $Id: +/* $Id: fcntl.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ */ /* * fcntl.h * - * file control options. Based on the Single UNIX(r) Specification, - * Version 2 + * file control options. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/fmtmsg.h b/posix/include/fmtmsg.h index 1d700dc550a..e0955278057 100644 --- a/posix/include/fmtmsg.h +++ b/posix/include/fmtmsg.h @@ -1,8 +1,10 @@ +/* $Id: fmtmsg.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * fmtmsg.h * - * message display structures. Based on the Single UNIX(r) Specification, - * Version 2 + * message display structures. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -24,15 +26,6 @@ #define __FMTMSG_H_INCLUDED__ /* INCLUDES */ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ - -#endif /* OBJECTS */ @@ -68,7 +61,7 @@ /* Identifiers for the levels of severity */ #define MM_NOSEV (0) /* No severity level provided for the message. */ #define MM_INFO (1) /* Informative message. */ -#define MM_WARNING (2) /* Application has detected unusual non-error +#define MM_WARNING (2) /* Application has detected unusual non-error \ condition. */ #define MM_ERROR (3) /* Application has encountered a non-fatal fault. */ #define MM_HALT (4) /* Error causing application to halt. */ @@ -84,9 +77,9 @@ /* Return values */ #define MM_OK ( 0) /* The function succeeded. */ #define MM_NOTOK (-1) /* The function failed completely. */ -#define MM_NOMSG (-2) /* The function was unable to generate a message on +#define MM_NOMSG (-2) /* The function was unable to generate a message on \ standard error, but otherwise succeeded. */ -#define MM_NOCON (-3) /* The function was unable to generate a console +#define MM_NOCON (-3) /* The function was unable to generate a console \ message, but otherwise succeeded. */ /* PROTOTYPES */ diff --git a/posix/include/fnmatch.h b/posix/include/fnmatch.h index b571045a5e3..63f28d77c65 100644 --- a/posix/include/fnmatch.h +++ b/posix/include/fnmatch.h @@ -1,8 +1,10 @@ +/* $Id: fnmatch.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * fnmatch.h * - * filename-matching types. Based on the Single UNIX(r) Specification, - * Version 2 + * filename-matching types. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -40,17 +42,17 @@ /* CONSTANTS */ /* Flags */ -#define FNM_PATHNAME (0x00000001) /* Slash in string only matches slash +#define FNM_PATHNAME (0x00000001) /* Slash in string only matches slash \ in pattern. */ -#define FNM_PERIOD (0x00000002) /* Leading period in string must be - exactly matched by period in +#define FNM_PERIOD (0x00000002) /* Leading period in string must be \ + exactly matched by period in \ pattern. */ #define FNM_NOESCAPE (0x00000004) /* Disable backslash escaping. */ /* Return values */ -#define FNM_NOMATCH (1) /* The string does not match the specified +#define FNM_NOMATCH (1) /* The string does not match the specified \ pattern. */ -#define FNM_NOSYS (2) /* The implementation does not support this +#define FNM_NOSYS (2) /* The implementation does not support this \ function. */ /* PROTOTYPES */ diff --git a/posix/include/ftw.h b/posix/include/ftw.h index f7d55dc7ad8..7927ccaf5b3 100644 --- a/posix/include/ftw.h +++ b/posix/include/ftw.h @@ -1,8 +1,10 @@ +/* $Id: ftw.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * ftw.h * - * file tree traversal. Based on the Single UNIX(r) Specification, - * Version 2 + * file tree traversal. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -24,24 +26,15 @@ #define __FTW_H_INCLUDED__ /* INCLUDES */ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ - -#endif /* OBJECTS */ /* TYPES */ struct FTW { - int base - int level -} + int base; + int level; +}; /* CONSTANTS */ /* Values of the third argument to the application-supplied function @@ -55,14 +48,14 @@ struct FTW #define FTW_SLN (7) /* Symbolic link that names a non-existent file. */ /* Values of the fourth argument to nftw() */ -#define FTW_PHYS (0x00000001) /* Physical walk, does not follow symbolic - links. Otherwise, nftw() will follow - links but will not walk down any path +#define FTW_PHYS (0x00000001) /* Physical walk, does not follow symbolic \ + links. Otherwise, nftw() will follow \ + links but will not walk down any path \ that crosses itself. */ #define FTW_MOUNT (0x00000002) /* The walk will not cross a mount point. */ -#define FTW_DEPTH (0x00000004) /* All subdirectories will be visited before +#define FTW_DEPTH (0x00000004) /* All subdirectories will be visited before \ the directory itself. */ -#define FTW_CHDIR (0x00000008) /* The walk will change to each directory +#define FTW_CHDIR (0x00000008) /* The walk will change to each directory \ before reading it. */ /* PROTOTYPES */ diff --git a/posix/include/glob.h b/posix/include/glob.h index 08248bdb9a0..20905fcb489 100644 --- a/posix/include/glob.h +++ b/posix/include/glob.h @@ -1,8 +1,10 @@ +/* $Id: glob.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * glob.h * - * pathname pattern-matching types. Based on the Single UNIX(r) - * Specification, Version 2 + * pathname pattern-matching types. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -24,46 +26,37 @@ #define __GLOB_H_INCLUDED__ /* INCLUDES */ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ - -#endif /* OBJECTS */ /* TYPES */ -typedef struct _tag_glob_t +typedef struct __tagglob_t { - size_t gl_pathc /* count of paths matched by pattern */ - char **gl_pathv /* pointer to a list of matched pathnames */ - size_t gl_offs /* slots to reserve at the beginning of gl_pathv */ + size_t gl_pathc; /* count of paths matched by pattern */ + char **gl_pathv; /* pointer to a list of matched pathnames */ + size_t gl_offs; /* slots to reserve at the beginning of gl_pathv */ } glob_t; /* CONSTANTS */ /* Values for the flags argument */ -#define GLOB_APPEND (0x00000001) /* Append generated pathnames to +#define GLOB_APPEND (0x00000001) /* Append generated pathnames to \ those previously obtained. */ -#define GLOB_DOOFFS (0x00000002) /* Specify how many null pointers to +#define GLOB_DOOFFS (0x00000002) /* Specify how many null pointers to \ add to the beginning of */ #define GLOB_ERR (0x00000004) /* Cause glob() to return on error. */ -#define GLOB_MARK (0x00000008) /* Each pathname that is a directory - that matches pattern has a slash +#define GLOB_MARK (0x00000008) /* Each pathname that is a directory \ + that matches pattern has a slash \ appended. */ -#define GLOB_NOCHECK (0x00000010) /* If pattern does not match any pathname, - then return a list consisting of only +#define GLOB_NOCHECK (0x00000010) /* If pattern does not match any pathname, \ + then return a list consisting of only \ pattern. */ #define GLOB_NOESCAPE (0x00000020) /* Disable backslash escaping. */ #define GLOB_NOSORT (0x00000040) /* Do not sort the pathnames returned. */ /* Error return values */ -#define GLOB_ABORTED (-1) /* The scan was stopped because GLOB_ERR was set +#define GLOB_ABORTED (-1) /* The scan was stopped because GLOB_ERR was set \ or errfunc returned non-zero. */ -#define GLOB_NOMATCH (-2) /* The pattern does not match any existing pathname, +#define GLOB_NOMATCH (-2) /* The pattern does not match any existing pathname, \ and GLOB_NOCHECK was not set in flags. */ #define GLOB_NOSPACE (-3) /* An attempt to allocate memory failed. */ #define GLOB_NOSYS (-4) /* The implementation does not support this function. */ diff --git a/posix/include/grp.h b/posix/include/grp.h index 35d1e11c3e4..0c93a6f4922 100644 --- a/posix/include/grp.h +++ b/posix/include/grp.h @@ -1,7 +1,10 @@ +/* $Id: grp.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * grp.h * - * group structure. Based on the Single UNIX(r) Specification, Version 2 + * group structure. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/iconv.h b/posix/include/iconv.h index 0e076f9c41e..ad409459369 100644 --- a/posix/include/iconv.h +++ b/posix/include/iconv.h @@ -1,8 +1,10 @@ +/* $Id: iconv.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * iconv.h * - * codeset conversion facility. Based on the Single UNIX(r) Specification, - * Version 2 + * codeset conversion facility. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -24,15 +26,6 @@ #define __ICONV_H_INCLUDED__ /* INCLUDES */ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ - -#endif /* OBJECTS */ diff --git a/posix/include/inttypes.h b/posix/include/inttypes.h index fb2bfcac5a7..680173feba5 100644 --- a/posix/include/inttypes.h +++ b/posix/include/inttypes.h @@ -1,8 +1,10 @@ +/* $Id: inttypes.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * inttypes.h * - * fixed size integral types. Based on the Single UNIX(r) Specification, - * Version 2 + * fixed size integral types. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/iso646.h b/posix/include/iso646.h index dccb48fe677..d0c15138133 100644 --- a/posix/include/iso646.h +++ b/posix/include/iso646.h @@ -1,8 +1,10 @@ +/* $Id: iso646.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * iso646.h * - * alternative spellings. Based on the Single UNIX(r) Specification, - * Version 2 + * alternative spellings. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -24,15 +26,6 @@ #define __ISO646_H_INCLUDED__ /* INCLUDES */ -#ifdef __PSXDLL__ - -/* headers for internal usage by psxdll.dll and ReactOS */ - -#else /* ! __PSXDLL__ */ - -/* standard POSIX headers */ - -#endif /* OBJECTS */ diff --git a/posix/include/libgen.h b/posix/include/libgen.h index 692baef84d6..2a9ea87062e 100644 --- a/posix/include/libgen.h +++ b/posix/include/libgen.h @@ -1,3 +1,5 @@ +/* $Id: libgen.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * libgen.h * diff --git a/posix/include/limits.h b/posix/include/limits.h index c81dfb6b390..6ad95cad01b 100644 --- a/posix/include/limits.h +++ b/posix/include/limits.h @@ -1,9 +1,10 @@ -/* TODO */ +/* $Id: limits.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * limits.h * - * implementation-dependent constants. Based on the Single UNIX(r) - * Specification, Version 2 + * implementation-dependent constants. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -31,6 +32,7 @@ /* TYPES */ /* CONSTANTS */ +/* TODO */ #define OPEN_MAX (256) /* PROTOTYPES */ diff --git a/posix/include/math.h b/posix/include/math.h index b14e4fb13b1..77284e25240 100644 --- a/posix/include/math.h +++ b/posix/include/math.h @@ -1,8 +1,10 @@ +/* $Id: math.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * math.h * - * mathematical declarations. Based on the Single UNIX(r) Specification, - * Version 2 + * mathematical declarations. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/netinet/in.h b/posix/include/netinet/in.h index dff9b64edcc..4baf1411511 100644 --- a/posix/include/netinet/in.h +++ b/posix/include/netinet/in.h @@ -1,6 +1,42 @@ +/* $Id: in.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ +/* + * netinet/in.h + * + * Internet Protocol family. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __NETINET_IN_H_INCLUDED__ #define __NETINET_IN_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __NETINET_IN_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/psx/debug.h b/posix/include/psx/debug.h index 4ac86dbb5a0..19b65e067e5 100644 --- a/posix/include/psx/debug.h +++ b/posix/include/psx/debug.h @@ -1,3 +1,5 @@ +/* $Id: debug.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/debug.h * diff --git a/posix/include/psx/dirent.h b/posix/include/psx/dirent.h index e9e99ea4624..ac01a83aec3 100644 --- a/posix/include/psx/dirent.h +++ b/posix/include/psx/dirent.h @@ -1,3 +1,5 @@ +/* $Id: dirent.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/dirent.h * diff --git a/posix/include/psx/dlfcn.h b/posix/include/psx/dlfcn.h index b2d96feb6ab..8fc6fbd9c3c 100644 --- a/posix/include/psx/dlfcn.h +++ b/posix/include/psx/dlfcn.h @@ -1,3 +1,5 @@ +/* $Id: dlfcn.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/dlfcn.h * diff --git a/posix/include/psx/errno.h b/posix/include/psx/errno.h index fb0c89c453e..ea8e538afd8 100644 --- a/posix/include/psx/errno.h +++ b/posix/include/psx/errno.h @@ -1,3 +1,5 @@ +/* $Id: errno.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/errno.h * diff --git a/posix/include/psx/fdtable.h b/posix/include/psx/fdtable.h index 99fdba5c6b1..7296957c860 100644 --- a/posix/include/psx/fdtable.h +++ b/posix/include/psx/fdtable.h @@ -1,9 +1,9 @@ -/* $Id: +/* $Id: fdtable.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ */ /* * psx/fdtable.h * - * POSIX subsystem file descriptor table data structure + * POSIX+ subsystem file descriptor table data structure * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/psx/interlock.h b/posix/include/psx/interlock.h index 475e9dbce90..fba8b5f588d 100644 --- a/posix/include/psx/interlock.h +++ b/posix/include/psx/interlock.h @@ -1,3 +1,5 @@ +/* $Id: interlock.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/interlock.h * diff --git a/posix/include/psx/path.h b/posix/include/psx/path.h index 369f3e06eed..b03d84ee259 100644 --- a/posix/include/psx/path.h +++ b/posix/include/psx/path.h @@ -1,7 +1,9 @@ +/* $Id: path.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/path.h * - * POSIX subsystem path functions + * POSIX+ subsystem path functions * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/psx/pdata.h b/posix/include/psx/pdata.h index 523d278dac9..56d730802b7 100644 --- a/posix/include/psx/pdata.h +++ b/posix/include/psx/pdata.h @@ -1,9 +1,9 @@ -/* $Id: +/* $Id: pdata.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ */ /* * psx/pdata.h * - * POSIX subsystem process environment data structure + * POSIX+ subsystem process environment data structure * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/psx/pthread.h b/posix/include/psx/pthread.h index 5168388b274..a0f3bbe1878 100644 --- a/posix/include/psx/pthread.h +++ b/posix/include/psx/pthread.h @@ -1,3 +1,5 @@ +/* $Id: pthread.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/pthread.h * diff --git a/posix/include/psx/safeobj.h b/posix/include/psx/safeobj.h index 6f8da3df2e0..ead9e049f00 100644 --- a/posix/include/psx/safeobj.h +++ b/posix/include/psx/safeobj.h @@ -1,3 +1,5 @@ +/* $Id: safeobj.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/safeobj.h * diff --git a/posix/include/psx/stdlib.h b/posix/include/psx/stdlib.h index 5367d8c05bd..13bcca2615e 100644 --- a/posix/include/psx/stdlib.h +++ b/posix/include/psx/stdlib.h @@ -1,3 +1,5 @@ +/* $Id: stdlib.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * psx/stdlib.h * diff --git a/posix/include/psx/template.h b/posix/include/psx/template.h index 998153ece09..a2ad564a065 100644 --- a/posix/include/psx/template.h +++ b/posix/include/psx/template.h @@ -1,12 +1,25 @@ +/* $Id: template.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + How to create a new header file from this template: + - copy the template in the new file (never edit this file directly, unless + that's what you want) + - search for the string "EDITME" in the file, and follow the instructions + - remove this comment block, all blocks containing DELETEME, and all EDITME + instructions + - save your file, and Have Fun! (TM) + */ +/* $ Id $ (EDITME: replace "$ Id $" with "$Id: template.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $") + */ /* - * psx/template.h + * psx/template.h (EDITME: replace with the real name of the header) * - * template for POSIX headers + * template for POSIX headers (EDITME: replace this line with the real file + * description) * * This file is part of the ReactOS Operating System. * * Contributors: - * Created by KJK::Hyperion + * Created by John Doe (EDITME: your name and e-mail go + * here) * * THIS SOFTWARE IS NOT COPYRIGHTED * @@ -19,9 +32,39 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * */ -#ifndef __PSX_TEMPLATE_H_INCLUDED__ /* FIXME: replace with the appropriate tag */ -#define __PSX_TEMPLATE_H_INCLUDED__ /* FIXME: replace with the appropriate tag */ +/* + Tags are used to prevent double inclusion of C header files. This + technique should be documented in all good C manuals + + How to generate an unique tag for your header: + - uppercase the name of the header, where "name" is the filename and + the optional relative path (e.g. "stdio.h", "sys/types.h") + - replace all non-alphanumeric characters in the obtained name with an + underscore character ("_") + - prepend a double underscore ("__"), and append the string "_INCLUDED__" + - replace all occurrences of "__PSX_TEMPLATE_H_INCLUDED__" in this file + with your tag + + Example tags: + sys/types.h -> SYS/TYPES.H -> SYS_TYPES_H -> __SYS_TYPES_H_INCLUDED__ + iso646.h -> ISO646.H -> ISO646_H -> __ISO646_H_INCLUDED__ + + (REMOVEME) + */ +#ifndef __PSX_TEMPLATE_H_INCLUDED__ /* EDITME: replace macro with unique tag */ +#define __PSX_TEMPLATE_H_INCLUDED__ /* EDITME: replace macro with unique tag */ +/* + Explanation of the sections: + INCLUDES #include directives should be grouped here + OBJECTS declare global variables here + TYPES types, structures and unions here + CONSTANTS symbolic constants (simple #define's), enums, constants + PROTOTYPES ANSI C function prototypes + MACROS parametrized macros + + (REMOVEME) + */ /* INCLUDES */ /* OBJECTS */ @@ -34,7 +77,7 @@ /* MACROS */ -#endif /* __PSX_TEMPLATE_H_INCLUDED__ */ /* FIXME: replace with the appropriate tag */ +#endif /* __PSX_TEMPLATE_H_INCLUDED__ */ /* EDITME: replace macro with unique tag */ /* EOF */ diff --git a/posix/include/pthread.h b/posix/include/pthread.h index 29f3a84714f..9291bcdb811 100644 --- a/posix/include/pthread.h +++ b/posix/include/pthread.h @@ -1,3 +1,5 @@ +/* $Id: pthread.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * pthread.h * diff --git a/posix/include/pwd.h b/posix/include/pwd.h index ed06873cf00..4860203cf15 100644 --- a/posix/include/pwd.h +++ b/posix/include/pwd.h @@ -1,7 +1,10 @@ +/* $Id: pwd.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * pwd.h * - * password structure. Based on the Single UNIX(r) Specification, Version 2 + * password structure. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/sched.h b/posix/include/sched.h index d0f77935cfd..858f952395d 100644 --- a/posix/include/sched.h +++ b/posix/include/sched.h @@ -1,3 +1,5 @@ +/* $Id: sched.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * sched.h * diff --git a/posix/include/signal.h b/posix/include/signal.h index c7afdc63da8..94a667468bc 100644 --- a/posix/include/signal.h +++ b/posix/include/signal.h @@ -1,3 +1,5 @@ +/* $Id: signal.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * signal.h * diff --git a/posix/include/stdarg.h b/posix/include/stdarg.h index 6ed8b5f739d..0273c4bb098 100644 --- a/posix/include/stdarg.h +++ b/posix/include/stdarg.h @@ -1,8 +1,10 @@ +/* $Id: stdarg.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * stdarg.h * - * handle variable argument list. Based on the Single UNIX(r) - * Specification, Version 2 + * handle variable argument list. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/stddef.h b/posix/include/stddef.h index debec6c66b3..a869433a972 100644 --- a/posix/include/stddef.h +++ b/posix/include/stddef.h @@ -1,8 +1,10 @@ +/* $Id: stddef.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * stddef.h * - * standard type definitions. Based on the Single UNIX(r) Specification, - * Version 2 + * standard type definitions. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/stdio.h b/posix/include/stdio.h index 7fc1d1966cf..7b2c49515d3 100644 --- a/posix/include/stdio.h +++ b/posix/include/stdio.h @@ -1,7 +1,10 @@ +/* $Id: stdio.h,v 1.2 2002/02/20 09:17:54 hyperion Exp $ + */ /* * stdio.h * - * standard buffered input/output. + * standard buffered input/output. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -31,16 +34,16 @@ /* OBJECTS */ extern char *optarg; extern int opterr; -extern int optind; /* (LEGACY) */ +extern int optind; /* LEGACY */ extern int optopt; /* TYPES */ -typedef struct _tagFILE +typedef struct __tagFILE { int _dummy; } FILE; -typedef struct _tagfpos_t +typedef struct __tagfpos_t { int _dummy; } fpos_t; @@ -93,7 +96,7 @@ typedef struct _tagfpos_t /* PROTOTYPES */ void clearerr(FILE *); char *ctermid(char *); -char *cuserid(char *); /* (LEGACY) */ +char *cuserid(char *); /* LEGACY */ int fclose(FILE *); FILE *fdopen(int, const char *); int feof(FILE *); @@ -123,7 +126,7 @@ int getc(FILE *); int getchar(void); int getc_unlocked(FILE *); int getchar_unlocked(void); -int getopt(int, char * const[], const char *); /* (LEGACY) */ +int getopt(int, char * const[], const char *); /* LEGACY */ char *gets(char *); int getw(FILE *); int pclose(FILE *); diff --git a/posix/include/stdlib.h b/posix/include/stdlib.h index 2cdf5167129..74c814c968e 100644 --- a/posix/include/stdlib.h +++ b/posix/include/stdlib.h @@ -1,8 +1,10 @@ +/* $Id: stdlib.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * stdlib.h * - * standard library definitions. Based on the Single UNIX(r) - * Specification, Version 2 + * standard library definitions. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -45,7 +47,7 @@ typedef struct __tagldiv_t } ldiv_t; /* CONSTANTS */ -#define EXIT_FAILURE (-1) /* Unsuccessful termination for exit(), evaluates +#define EXIT_FAILURE (-1) /* Unsuccessful termination for exit(), evaluates \ to a non-zero value. */ #define EXIT_SUCCESS (0) /* Successful termination for exit(), evaluates to 0. */ @@ -53,8 +55,8 @@ typedef struct __tagldiv_t #define RAND_MAX (32767) /* Maximum value returned by rand(), at least 32,767. */ /* FIXME */ -#define MB_CUR_MAX (1) /* Integer expression whose value is the maximum number - of bytes in a character specified by the current +#define MB_CUR_MAX (1) /* Integer expression whose value is the maximum number \ + of bytes in a character specified by the current \ locale. */ /* PROTOTYPES */ @@ -114,9 +116,9 @@ long int strtol(const char *, char **, int); unsigned long int strtoul(const char *, char **, int); int system(const char *); -int ttyslot(void); /* (LEGACY) */ +int ttyslot(void); /* LEGACY */ int unlockpt(int); -void *valloc(size_t); /* (LEGACY) */ +void *valloc(size_t); /* LEGACY */ size_t wcstombs(char *, const wchar_t *, size_t); int wctomb(char *, wchar_t); diff --git a/posix/include/string.h b/posix/include/string.h index f73d6387b45..ef5be796b34 100644 --- a/posix/include/string.h +++ b/posix/include/string.h @@ -1,7 +1,10 @@ +/* $Id: string.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * string.h * - * string operations. Based on the Single UNIX(r) Specification, Version 2 + * string operations. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/sys/ipc.h b/posix/include/sys/ipc.h index 6a49a8a7d4c..00798cc59b0 100644 --- a/posix/include/sys/ipc.h +++ b/posix/include/sys/ipc.h @@ -1,6 +1,42 @@ +/* $Id: ipc.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/ipc.h + * + * interprocess communication access structure. Conforming to the Single + * UNIX(r) Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_IPC_H_INCLUDED__ #define __SYS_IPC_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_IPC_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/mman.h b/posix/include/sys/mman.h index 952a6e9d537..46ee81bfb41 100644 --- a/posix/include/sys/mman.h +++ b/posix/include/sys/mman.h @@ -1,7 +1,43 @@ -#ifndef __SYS_MMAN_H_INCLUDED__ -#define __SYS_MMAN_H_INCLUDED__ +/* $Id: mman.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/mman.h + * + * memory management declarations. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ +#ifndef __SYS_SOCKET_H_INCLUDED__ +#define __SYS_SOCKET_H_INCLUDED__ -#endif /* __SYS_MMAN_H_INCLUDED__ */ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + +#endif /* __SYS_SOCKET_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/msg.h b/posix/include/sys/msg.h index 6a8f1ee216b..ae97d2aad5a 100644 --- a/posix/include/sys/msg.h +++ b/posix/include/sys/msg.h @@ -1,7 +1,43 @@ -#ifndef __SYS_MSG_H_INCLUDED__ -#define __SYS_MSG_H_INCLUDED__ +/* $Id: msg.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/msg.h + * + * message queue structures. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ +#ifndef __SYS_SOCKET_H_INCLUDED__ +#define __SYS_SOCKET_H_INCLUDED__ -#endif /* __SYS_MSG_H_INCLUDED__ */ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + +#endif /* __SYS_SOCKET_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/resource.h b/posix/include/sys/resource.h index 2e74b0b377b..0a13abaca95 100644 --- a/posix/include/sys/resource.h +++ b/posix/include/sys/resource.h @@ -1,6 +1,42 @@ +/* $Id: resource.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/resource.h + * + * definitions for XSI resource operations. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_RESOURCE_H_INCLUDED__ #define __SYS_RESOURCE_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_RESOURCE_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/sem.h b/posix/include/sys/sem.h index 0a1a896fbdc..d117684c758 100644 --- a/posix/include/sys/sem.h +++ b/posix/include/sys/sem.h @@ -1,6 +1,42 @@ +/* $Id: sem.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/sem.h + * + * semaphore facility. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_SEM_H_INCLUDED__ #define __SYS_SEM_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_SEM_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/shm.h b/posix/include/sys/shm.h index 9e91b6a6808..cbdb6a1ff74 100644 --- a/posix/include/sys/shm.h +++ b/posix/include/sys/shm.h @@ -1,6 +1,42 @@ +/* $Id: shm.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/shm.h + * + * shared memory facility. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_SHM_H_INCLUDED__ #define __SYS_SHM_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_SHM_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/socket.h b/posix/include/sys/socket.h index 5ac6f821729..d24a07af12d 100644 --- a/posix/include/sys/socket.h +++ b/posix/include/sys/socket.h @@ -1,6 +1,42 @@ +/* $Id: socket.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/socket.h + * + * Internet Protocol family. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_SOCKET_H_INCLUDED__ #define __SYS_SOCKET_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_SOCKET_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/stat.h b/posix/include/sys/stat.h index 4ee2745c306..1103900c874 100644 --- a/posix/include/sys/stat.h +++ b/posix/include/sys/stat.h @@ -1,8 +1,10 @@ +/* $Id: stat.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ /* * sys/stat.h * - * data returned by the stat() function. Based on the Single UNIX(r) Specification, - * Version 2 + * data returned by the stat() function. Conforming to the Single + * UNIX(r) Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/sys/statvfs.h b/posix/include/sys/statvfs.h index 56e87b099c3..4f101bc0c76 100644 --- a/posix/include/sys/statvfs.h +++ b/posix/include/sys/statvfs.h @@ -1,6 +1,42 @@ +/* $Id: statvfs.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/statvfs.h + * + * VFS Filesystem information structure. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_STATVFS_H_INCLUDED__ #define __SYS_STATVFS_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_STATVFS_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/time.h b/posix/include/sys/time.h index d27f87de064..e13d4584c1d 100644 --- a/posix/include/sys/time.h +++ b/posix/include/sys/time.h @@ -1,6 +1,42 @@ +/* $Id: time.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/time.h + * + * time types. Conforming to the Single UNIX(r) Specification Version 2, + * System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_TIME_H_INCLUDED__ #define __SYS_TIME_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_TIME_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/timeb.h b/posix/include/sys/timeb.h index 8235c4d7b9e..2bd0dc6ebd3 100644 --- a/posix/include/sys/timeb.h +++ b/posix/include/sys/timeb.h @@ -1,6 +1,42 @@ +/* $Id: timeb.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/timeb.h + * + * additional definitions for date and time. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_TIMEB_H_INCLUDED__ #define __SYS_TIMEB_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_TIMEB_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/times.h b/posix/include/sys/times.h index b4014456033..5d653ed61d0 100644 --- a/posix/include/sys/times.h +++ b/posix/include/sys/times.h @@ -1,6 +1,42 @@ +/* $Id: times.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/times.h + * + * file access and modification times structure. Conforming to the Single + * UNIX(r) Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_TIMES_H_INCLUDED__ #define __SYS_TIMES_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_TIMES_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/types.h b/posix/include/sys/types.h index a738115c67b..aff3449e5ba 100644 --- a/posix/include/sys/types.h +++ b/posix/include/sys/types.h @@ -1,7 +1,10 @@ +/* $Id: types.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ /* * sys/types.h * - * data types. Based on the Single UNIX(r) Specification, Version 2 + * data types. Conforming to the Single UNIX(r) Specification Version 2, + * System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/sys/uio.h b/posix/include/sys/uio.h index 2e278911fc0..2a70c6dd1f8 100644 --- a/posix/include/sys/uio.h +++ b/posix/include/sys/uio.h @@ -1,6 +1,42 @@ +/* $Id: uio.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/uio.h + * + * definitions for vector I/O operations. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_UIO_H_INCLUDED__ #define __SYS_UIO_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_UIO_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/un.h b/posix/include/sys/un.h index 9fc422a9319..e893f162f63 100644 --- a/posix/include/sys/un.h +++ b/posix/include/sys/un.h @@ -1,6 +1,42 @@ +/* $Id: un.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/un.h + * + * declarations for definitions for UNIX-domain sockets. Conforming to the + * Single UNIX(r) Specification Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_UN_H_INCLUDED__ #define __SYS_UN_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_UN_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/sys/utsname.h b/posix/include/sys/utsname.h index bd2b9b32ec1..b6d7c40d251 100644 --- a/posix/include/sys/utsname.h +++ b/posix/include/sys/utsname.h @@ -1,8 +1,10 @@ +/* $Id: utsname.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ /* * sys/utsname.h * - * system name structure. Based on the Single UNIX(r) Specification, - * Version 2 + * system name structure. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/sys/wait.h b/posix/include/sys/wait.h index 434a4cedba1..bc6122c3de6 100644 --- a/posix/include/sys/wait.h +++ b/posix/include/sys/wait.h @@ -1,6 +1,42 @@ +/* $Id: wait.h,v 1.2 2002/02/20 09:17:56 hyperion Exp $ + */ +/* + * sys/wait.h + * + * declarations for waiting. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 + * + * This file is part of the ReactOS Operating System. + * + * Contributors: + * Created by KJK::Hyperion + * + * THIS SOFTWARE IS NOT COPYRIGHTED + * + * This source code is offered for use in the public domain. You may + * use, modify or distribute it freely. + * + * This code is distributed in the hope that it will be useful but + * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY + * DISCLAMED. This includes but is not limited to warranties of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + */ #ifndef __SYS_WAIT_H_INCLUDED__ #define __SYS_WAIT_H_INCLUDED__ +/* INCLUDES */ + +/* OBJECTS */ + +/* TYPES */ + +/* CONSTANTS */ + +/* PROTOTYPES */ + +/* MACROS */ + #endif /* __SYS_WAIT_H_INCLUDED__ */ /* EOF */ diff --git a/posix/include/time.h b/posix/include/time.h index 664ce22b41c..b231942d9fa 100644 --- a/posix/include/time.h +++ b/posix/include/time.h @@ -1,7 +1,10 @@ +/* $Id: time.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * time.h * - * time types. Based on the Single UNIX(r) Specification, Version 2 + * time types. Conforming to the Single UNIX(r) Specification Version 2, + * System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/ucontext.h b/posix/include/ucontext.h index 0ef8daaf1bb..77fb389931d 100644 --- a/posix/include/ucontext.h +++ b/posix/include/ucontext.h @@ -1,7 +1,10 @@ +/* $Id: ucontext.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * ucontext.h * - * user context. Based on the Single UNIX(r) Specification, Version 2 + * user context. Conforming to the Single UNIX(r) Specification Version 2, + * System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -30,9 +33,9 @@ /* TYPES */ typedef void * mcontext_t; -typedef struct _tagucontext_t ucontext_t; +typedef struct __tagucontext_t ucontext_t; -struct _tagucontext_t +struct __tagucontext_t { ucontext_t *uc_link; /* pointer to the context that will be resumed when this context returns */ diff --git a/posix/include/unistd.h b/posix/include/unistd.h index 1483dae5bad..73fffef986a 100644 --- a/posix/include/unistd.h +++ b/posix/include/unistd.h @@ -1,8 +1,10 @@ +/* $Id: unistd.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* - * psx/template.h + * unistd.h * - * standard symbolic constants and types. Based on the Single UNIX(r) - * Specification, Version 2 + * standard symbolic constants and types. Conforming to the Single UNIX(r) + * Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * @@ -399,13 +401,13 @@ int access(const char *, int); unsigned int alarm(unsigned int); int brk(void *); int chdir(const char *); -int chroot(const char *); /* (LEGACY) */ +int chroot(const char *); /* LEGACY */ int chown(const char *, uid_t, gid_t); int close(int); size_t confstr(int, char *, size_t); char *crypt(const char *, const char *); char *ctermid(char *); -char *cuserid(char *s); /* (LEGACY) */ +char *cuserid(char *s); /* LEGACY */ int dup(int); int dup2(int, int); void encrypt(char[64], int); @@ -424,7 +426,7 @@ long int fpathconf(int, int); int fsync(int); int ftruncate(int, off_t); char *getcwd(char *, size_t); -int getdtablesize(void); /* (LEGACY) */ +int getdtablesize(void); /* LEGACY */ gid_t getegid(void); uid_t geteuid(void); gid_t getgid(void); @@ -433,8 +435,8 @@ long gethostid(void); char *getlogin(void); int getlogin_r(char *, size_t); int getopt(int, char * const [], const char *); -int getpagesize(void); /* (LEGACY) */ -char *getpass(const char *); /* (LEGACY) */ +int getpagesize(void); /* LEGACY */ +char *getpass(const char *); /* LEGACY */ pid_t getpgid(pid_t); pid_t getpgrp(void); pid_t getpid(void); diff --git a/posix/include/utime.h b/posix/include/utime.h index 1b5e65b229c..e5e29315b76 100644 --- a/posix/include/utime.h +++ b/posix/include/utime.h @@ -1,8 +1,10 @@ +/* $Id: utime.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * utime.h * - * access and modification times structure. Based on the Single UNIX(r) - * Specification, Version 2 + * access and modification times structure. Conforming to the Single + * UNIX(r) Specification Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/include/wchar.h b/posix/include/wchar.h index 2facb02efdc..e4db9086696 100644 --- a/posix/include/wchar.h +++ b/posix/include/wchar.h @@ -1,8 +1,10 @@ +/* $Id: wchar.h,v 1.2 2002/02/20 09:17:55 hyperion Exp $ + */ /* * wchar.h * - * wide-character types. Based on the Single UNIX(r) Specification, - * Version 2 + * wide-character types. Conforming to the Single UNIX(r) Specification + * Version 2, System Interface & Headers Issue 5 * * This file is part of the ReactOS Operating System. * diff --git a/posix/lib/psxdll/Makefile b/posix/lib/psxdll/Makefile index 444f16692ef..fc51e08258f 100644 --- a/posix/lib/psxdll/Makefile +++ b/posix/lib/psxdll/Makefile @@ -1,4 +1,4 @@ -# $Id: +# $Id: Makefile,v 1.2 2002/02/20 09:17:56 hyperion Exp $ PATH_TO_TOP = ../../../.. diff --git a/posix/lib/psxdll/dirent/closedir.c b/posix/lib/psxdll/dirent/closedir.c index b3af81c4fdb..9aa17e9e565 100644 --- a/posix/lib/psxdll/dirent/closedir.c +++ b/posix/lib/psxdll/dirent/closedir.c @@ -1,8 +1,8 @@ -/* $Id: closedir.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: closedir.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/dirent/closedir.c * PURPOSE: Close a directory stream * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/dirent/opendir.c b/posix/lib/psxdll/dirent/opendir.c index bc211655dbb..5ec665976c6 100644 --- a/posix/lib/psxdll/dirent/opendir.c +++ b/posix/lib/psxdll/dirent/opendir.c @@ -1,8 +1,8 @@ -/* $Id: opendir.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: opendir.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/dirent/opendir.c * PURPOSE: Open a directory * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/dirent/readdir.c b/posix/lib/psxdll/dirent/readdir.c index 79938c47d33..c2331e81e1a 100644 --- a/posix/lib/psxdll/dirent/readdir.c +++ b/posix/lib/psxdll/dirent/readdir.c @@ -1,8 +1,8 @@ -/* $Id: readdir.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: readdir.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/dirent/readdir.c * PURPOSE: Read directory * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/dlfcn/dlclose.c b/posix/lib/psxdll/dlfcn/dlclose.c index 6241a9f8779..1be412ca30e 100644 --- a/posix/lib/psxdll/dlfcn/dlclose.c +++ b/posix/lib/psxdll/dlfcn/dlclose.c @@ -1,8 +1,8 @@ -/* $Id: dlclose.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: dlclose.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/dlfcn/dlclose.c * PURPOSE: Close a dlopen() object * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/dlfcn/dlerror.c b/posix/lib/psxdll/dlfcn/dlerror.c index c23c3d3613b..2106c88a608 100644 --- a/posix/lib/psxdll/dlfcn/dlerror.c +++ b/posix/lib/psxdll/dlfcn/dlerror.c @@ -1,8 +1,8 @@ -/* $Id: dlerror.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: dlerror.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/dlfcn/dlerror.c * PURPOSE: Gain access to an executable object file * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/dlfcn/dlopen.c b/posix/lib/psxdll/dlfcn/dlopen.c index 10563aeb0fe..dcdb2c22526 100644 --- a/posix/lib/psxdll/dlfcn/dlopen.c +++ b/posix/lib/psxdll/dlfcn/dlopen.c @@ -1,8 +1,8 @@ -/* $Id: dlopen.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: dlopen.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/dlfcn/dlopen.c * PURPOSE: Gain access to an executable object file * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/dlfcn/dlsym.c b/posix/lib/psxdll/dlfcn/dlsym.c index 60140e304eb..14f5b6a70e2 100644 --- a/posix/lib/psxdll/dlfcn/dlsym.c +++ b/posix/lib/psxdll/dlfcn/dlsym.c @@ -1,8 +1,8 @@ -/* $Id: dlsym.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: dlsym.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/dlfcn/dlsym.c * PURPOSE: Obtain the address of a symbol from a dlopen() object * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/errno/errno.c b/posix/lib/psxdll/errno/errno.c index 78a7bded106..64a2f6feb4b 100644 --- a/posix/lib/psxdll/errno/errno.c +++ b/posix/lib/psxdll/errno/errno.c @@ -1,8 +1,8 @@ -/* $Id: errno.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: errno.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/errno/errno.c * PURPOSE: Internal errno implementation * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/fcntl/fcntl.c b/posix/lib/psxdll/fcntl/fcntl.c index 4ae854862d3..5630e32c18c 100644 --- a/posix/lib/psxdll/fcntl/fcntl.c +++ b/posix/lib/psxdll/fcntl/fcntl.c @@ -1,8 +1,8 @@ -/* $Id: fcntl.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: fcntl.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/fcntl/fcntl.c * PURPOSE: File control * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/fcntl/open.c b/posix/lib/psxdll/fcntl/open.c index 6b745825829..ecc8043417e 100644 --- a/posix/lib/psxdll/fcntl/open.c +++ b/posix/lib/psxdll/fcntl/open.c @@ -1,8 +1,8 @@ -/* $Id: open.c,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: open.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/fcntl/open.c * PURPOSE: Open a file * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/libgen/basename.c b/posix/lib/psxdll/libgen/basename.c index 6f47dcadfdc..9a38876e456 100644 --- a/posix/lib/psxdll/libgen/basename.c +++ b/posix/lib/psxdll/libgen/basename.c @@ -1,8 +1,8 @@ -/* $Id: basename.c,v 1.1 2002/02/20 07:06:51 hyperion Exp $ +/* $Id: basename.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/libgen/basename.c * PURPOSE: Return the last component of a pathname * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/misc/fdtable.c b/posix/lib/psxdll/misc/fdtable.c index 5c65f1e8a57..c87a3dc5366 100644 --- a/posix/lib/psxdll/misc/fdtable.c +++ b/posix/lib/psxdll/misc/fdtable.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: fdtable.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/misc/fdtable.c * PURPOSE: File descriptors table functions * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/misc/interlock.c b/posix/lib/psxdll/misc/interlock.c index a0ea432abbf..d1d9a7ae12e 100644 --- a/posix/lib/psxdll/misc/interlock.c +++ b/posix/lib/psxdll/misc/interlock.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: interlock.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/misc/interlock.c * PURPOSE: inter-locked increments/decrements * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/misc/main.c b/posix/lib/psxdll/misc/main.c index f9b394874de..83d3c218912 100644 --- a/posix/lib/psxdll/misc/main.c +++ b/posix/lib/psxdll/misc/main.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: main.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/misc/main.c * PURPOSE: psxdll.dll entry point * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/misc/path.c b/posix/lib/psxdll/misc/path.c index 795a53ae6fc..0753f5278fa 100644 --- a/posix/lib/psxdll/misc/path.c +++ b/posix/lib/psxdll/misc/path.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: path.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/misc/path.c * PURPOSE: POSIX subsystem path utilities * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/misc/safeobj.c b/posix/lib/psxdll/misc/safeobj.c index 697fd937120..555baabbe8f 100644 --- a/posix/lib/psxdll/misc/safeobj.c +++ b/posix/lib/psxdll/misc/safeobj.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: safeobj.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/misc/safeobj.c * PURPOSE: safe checking of user-provided objects * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/misc/template.c b/posix/lib/psxdll/misc/template.c index a3a67618202..497fd712b63 100644 --- a/posix/lib/psxdll/misc/template.c +++ b/posix/lib/psxdll/misc/template.c @@ -1,15 +1,25 @@ -/* $Id: +/* $Id: template.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ + How to create a new source file from this template: + - copy the template in the new file (never edit this file directly, unless + that's what you want) + - search for the string "EDITME" in the file, and follow the instructions + - remove this comment block, all blocks containing DELETEME, and all EDITME + instructions + - save your file, and Have Fun! (TM) + */ +/* $ Id $ (EDITME: replace "$ Id $" with "$Id: template.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $") */ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS POSIX+ Subsystem - * FILE: - * PURPOSE: - * PROGRAMMER: + * FILE: (EDITME: put real path of the file here) + * PURPOSE: (EDITME: put a very syntetic description of the file here) + * PROGRAMMER: (EDITME: your name and e-mail go here) * UPDATE HISTORY: - * : Created + * (EDITME: put here the creation date): Created */ +/* EDITME: your code here */ /* EOF */ diff --git a/posix/lib/psxdll/psxdll.def b/posix/lib/psxdll/psxdll.def index 013745727f5..65851a31d56 100644 --- a/posix/lib/psxdll/psxdll.def +++ b/posix/lib/psxdll/psxdll.def @@ -1,6 +1,6 @@ -; $Id: psxdll.def,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +; $Id: psxdll.def,v 1.2 2002/02/20 09:17:56 hyperion Exp $ ; -; ReactOS POSIX Client Library +; ReactOS POSIX+ Client Library ; LIBRARY PSXDLL.DLL diff --git a/posix/lib/psxdll/psxdll.edf b/posix/lib/psxdll/psxdll.edf index b3485bc3c3d..98309ef9446 100644 --- a/posix/lib/psxdll/psxdll.edf +++ b/posix/lib/psxdll/psxdll.edf @@ -1,6 +1,6 @@ -; $Id: psxdll.edf,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +; $Id: psxdll.edf,v 1.2 2002/02/20 09:17:56 hyperion Exp $ ; -; ReactOS POSIX Client Library +; ReactOS POSIX+ Client Library ; LIBRARY PSXDLL.DLL diff --git a/posix/lib/psxdll/psxdll.rc b/posix/lib/psxdll/psxdll.rc index 0f9befb9b1c..22b5d33e8c8 100644 --- a/posix/lib/psxdll/psxdll.rc +++ b/posix/lib/psxdll/psxdll.rc @@ -1,4 +1,4 @@ -/* $Id: psxdll.rc,v 1.1 2002/02/20 07:06:50 hyperion Exp $ +/* $Id: psxdll.rc,v 1.2 2002/02/20 09:17:56 hyperion Exp $ */ #include #include @@ -23,7 +23,7 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "CompanyName", RES_STR_COMPANY_NAME - VALUE "FileDescription", "Posix Client DLL\0" + VALUE "FileDescription", "POSIX+ Client DLL\0" VALUE "FileVersion", RES_STR_FILE_VERSION VALUE "InternalName", "psxdll\0" VALUE "LegalCopyright", RES_STR_LEGAL_COPYRIGHT diff --git a/posix/lib/psxdll/pthread/create.c b/posix/lib/psxdll/pthread/create.c index 93f53b8e8e1..192173e017d 100644 --- a/posix/lib/psxdll/pthread/create.c +++ b/posix/lib/psxdll/pthread/create.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: create.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/pthread/create.c * PURPOSE: Thread creation * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/pthread/exit.c b/posix/lib/psxdll/pthread/exit.c index 429822f49e7..99fd130fe42 100644 --- a/posix/lib/psxdll/pthread/exit.c +++ b/posix/lib/psxdll/pthread/exit.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: exit.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/pthread/exit.c * PURPOSE: Thread termination * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/pthread/join.c b/posix/lib/psxdll/pthread/join.c index 694a7155f5b..e9969d9fa0f 100644 --- a/posix/lib/psxdll/pthread/join.c +++ b/posix/lib/psxdll/pthread/join.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: join.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/pthread/join.c * PURPOSE: Wait for thread termination * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/pthread/kill.c b/posix/lib/psxdll/pthread/kill.c index 783f2959651..35e228795b4 100644 --- a/posix/lib/psxdll/pthread/kill.c +++ b/posix/lib/psxdll/pthread/kill.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: kill.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/pthread/kill.c * PURPOSE: Send a signal to a thread * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/pthread/mutex.c b/posix/lib/psxdll/pthread/mutex.c index 7e89f43b0ed..9a60bc94e7c 100644 --- a/posix/lib/psxdll/pthread/mutex.c +++ b/posix/lib/psxdll/pthread/mutex.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: mutex.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/pthread/mutex.c * PURPOSE: Mutex functions * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/pthread/self.c b/posix/lib/psxdll/pthread/self.c index 0dea976da65..3ae95fe32ca 100644 --- a/posix/lib/psxdll/pthread/self.c +++ b/posix/lib/psxdll/pthread/self.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: self.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/pthread/self.c * PURPOSE: get calling thread's ID * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/sched/yield.c b/posix/lib/psxdll/sched/yield.c index 8477b393e07..a0b73a45076 100644 --- a/posix/lib/psxdll/sched/yield.c +++ b/posix/lib/psxdll/sched/yield.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: yield.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/sched/yield.c * PURPOSE: Yield processor * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/signal/raise.c b/posix/lib/psxdll/signal/raise.c index 479901dc6a9..2c69ae97f5f 100644 --- a/posix/lib/psxdll/signal/raise.c +++ b/posix/lib/psxdll/signal/raise.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: raise.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/signal/raise.c * PURPOSE: Send a signal to the executing process * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/stdlib/abort.c b/posix/lib/psxdll/stdlib/abort.c index 134ad92f2e8..e6a1c128f65 100644 --- a/posix/lib/psxdll/stdlib/abort.c +++ b/posix/lib/psxdll/stdlib/abort.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: abort.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/stdlib/abort.c * PURPOSE: Generate an abnormal process abort * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/stdlib/exit.c b/posix/lib/psxdll/stdlib/exit.c index d76c580457e..44eec110285 100644 --- a/posix/lib/psxdll/stdlib/exit.c +++ b/posix/lib/psxdll/stdlib/exit.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: exit.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/stdlib/exit.c * PURPOSE: Terminate a process * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/stdlib/malloc.c b/posix/lib/psxdll/stdlib/malloc.c index c0b66e7b0ef..3e28e65e8e6 100644 --- a/posix/lib/psxdll/stdlib/malloc.c +++ b/posix/lib/psxdll/stdlib/malloc.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: malloc.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/stdlib/malloc.c * PURPOSE: Memory allocator * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/string/strcoll.c b/posix/lib/psxdll/string/strcoll.c index ebd42ffa6c4..4f6cd9f58e2 100644 --- a/posix/lib/psxdll/string/strcoll.c +++ b/posix/lib/psxdll/string/strcoll.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: strcoll.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/string/strcoll.c * PURPOSE: string comparison using collating information * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/string/strdup.c b/posix/lib/psxdll/string/strdup.c index 9f5695cdfc9..ac2bbe7aa8e 100644 --- a/posix/lib/psxdll/string/strdup.c +++ b/posix/lib/psxdll/string/strdup.c @@ -1,10 +1,10 @@ -/* $Id: +/* $Id: strdup.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/string/strdup.c - * PURPOSE: duplicate a string + * PURPOSE: Duplicate a string * PROGRAMMER: KJK::Hyperion * UPDATE HISTORY: * 21/01/2002: Created diff --git a/posix/lib/psxdll/string/strerror.c b/posix/lib/psxdll/string/strerror.c index 361ff0320f0..7b2c71a6034 100644 --- a/posix/lib/psxdll/string/strerror.c +++ b/posix/lib/psxdll/string/strerror.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: strerror.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/string/strerror.c * PURPOSE: Get error message string * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/sys/utsname/uname.c b/posix/lib/psxdll/sys/utsname/uname.c index 68f1f3fae37..d2b165a657b 100644 --- a/posix/lib/psxdll/sys/utsname/uname.c +++ b/posix/lib/psxdll/sys/utsname/uname.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: uname.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: lib/psxdll/sys/utsname/uname.c * PURPOSE: Get name of current system * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/unistd/close.c b/posix/lib/psxdll/unistd/close.c index 020fe67adf2..ba33cd8a37d 100644 --- a/posix/lib/psxdll/unistd/close.c +++ b/posix/lib/psxdll/unistd/close.c @@ -1,8 +1,8 @@ -/* $Id: -*/ +/* $Id: close.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ + */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/unistd/close.c * PURPOSE: Close a file descriptor * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/unistd/dup.c b/posix/lib/psxdll/unistd/dup.c index b746563dd77..2b06bb245b6 100644 --- a/posix/lib/psxdll/unistd/dup.c +++ b/posix/lib/psxdll/unistd/dup.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: dup.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/unistd/dup.c * PURPOSE: Duplicate an open file descriptor * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/unistd/getcwd.c b/posix/lib/psxdll/unistd/getcwd.c index 51771e00a40..684ce9e2809 100644 --- a/posix/lib/psxdll/unistd/getcwd.c +++ b/posix/lib/psxdll/unistd/getcwd.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: getcwd.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/unistd/getcwd.c * PURPOSE: Get the pathname of the current working directory * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/unistd/getpid.c b/posix/lib/psxdll/unistd/getpid.c index 2a3ebd33db0..4a701b3f826 100644 --- a/posix/lib/psxdll/unistd/getpid.c +++ b/posix/lib/psxdll/unistd/getpid.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: getpid.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/unistd/getpid.c * PURPOSE: Get the process ID * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/unistd/getppid.c b/posix/lib/psxdll/unistd/getppid.c index 8d5ed88a070..40c868d8993 100644 --- a/posix/lib/psxdll/unistd/getppid.c +++ b/posix/lib/psxdll/unistd/getppid.c @@ -1,8 +1,8 @@ -/* $Id: +/* $Id: getppid.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries + * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/unistd/getppid.c * PURPOSE: Get the parent process ID * PROGRAMMER: KJK::Hyperion diff --git a/posix/lib/psxdll/unistd/write.c b/posix/lib/psxdll/unistd/write.c index a234ef37744..25ab55a4f86 100644 --- a/posix/lib/psxdll/unistd/write.c +++ b/posix/lib/psxdll/unistd/write.c @@ -1,4 +1,4 @@ -/* $Id: +/* $Id: write.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory