os_sv2.h
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:4k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Operating-system dependent routines -- SVR2 version
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 10 April 1992
  13.  * Last Edited: 23 June 1999
  14.  *
  15.  * Copyright 1999 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made
  24.  * available "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. #include <unistd.h>
  36. #include <string.h>
  37. #define char void
  38. #include <memory.h>
  39. #undef char
  40. #include <sys/types.h>
  41. #include <sys/dir.h>
  42. #include <fcntl.h>
  43. #include <syslog.h>
  44. #include <sys/file.h>
  45. #include <ustat.h>
  46. /* Many versions of SysV get this wrong */
  47. #define setpgrp(a,b) Setpgrp(a,b)
  48. /* Different names between BSD and SVR4 */
  49. #define L_SET SEEK_SET
  50. #define L_INCR SEEK_CUR
  51. #define L_XTND SEEK_END
  52. #define lstat stat
  53. #define random lrand48
  54. #define SIGSTOP SIGQUIT
  55. #define S_IFLNK 0120000
  56. /* syslog() emulation */
  57. #define LOG_MAIL (2<<3) /* mail system */
  58. #define LOG_DAEMON (3<<3) /* system daemons */
  59. #define LOG_AUTH (4<<3) /* security/authorization messages */
  60. #define LOG_EMERG 0 /* system is unusable */
  61. #define LOG_ALERT 1 /* action must be taken immediately */
  62. #define LOG_CRIT 2 /* critical conditions */
  63. #define LOG_ERR 3 /* error conditions */
  64. #define LOG_WARNING 4 /* warning conditions */
  65. #define LOG_NOTICE 5 /* normal but signification condition */
  66. #define LOG_INFO 6 /* informational */
  67. #define LOG_DEBUG 7 /* debug-level messages */
  68. #define LOG_PID 0x01 /* log the pid with each message */
  69. #define LOG_CONS 0x02 /* log on the console if errors in sending */
  70. #define LOG_ODELAY 0x04 /* delay open until syslog() is called */
  71. #define LOG_NDELAY 0x08 /* don't delay open */
  72. #define LOG_NOWAIT 0x10 /* if forking to log on console, don't wait() */
  73. /* For flock() emulation */
  74. #define flock bsd_flock
  75. #define LOCK_SH 1
  76. #define LOCK_EX 2
  77. #define LOCK_NB 4
  78. #define LOCK_UN 8
  79. /* For setitimer() emulation */
  80. #define ITIMER_REAL 0
  81. /* For opendir() emulation */
  82. typedef struct _dirdesc {
  83.   int dd_fd;
  84.   long dd_loc;
  85.   long dd_size;
  86.   char *dd_buf;
  87. } DIR;
  88. #include "env_unix.h"
  89. #include "fs.h"
  90. #include "ftl.h"
  91. #include "nl.h"
  92. #include "tcp.h"
  93. #include "lockfix.h"
  94. struct passwd *getpwent (void);
  95. struct passwd *getpwuid (int uid);
  96. struct passwd *getpwnam (char *name);
  97. char *getenv (char *name);
  98. long gethostid (void);
  99. void *memmove (void *s,void *ct,size_t n);
  100. char *strstr (char *cs,char *ct);
  101. char *strerror (int n);
  102. unsigned long strtoul (char *s,char **endp,int base);
  103. DIR *opendir (char * name);
  104. int closedir (DIR *d);
  105. struct direct *readdir (DIR *d);
  106. typedef int (*select_t) (struct direct *name);
  107. typedef int (*compar_t) (void *d1,void *d2);
  108. int scandir (char *dirname,struct direct ***namelist,select_t select,
  109.      compar_t compar);
  110. int bsd_flock (int fd,int operation);
  111. int fsync (int fd);
  112. int openlog (ident,logopt,facility);
  113. int syslog (priority,message,parameters ...);
  114. void *malloc (size_t byteSize);
  115. void free (void *ptr);
  116. void *realloc (void *oldptr,size_t newsize);