home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / threads / include / pthread / unistd.h < prev   
C/C++ Source or Header  |  1996-09-28  |  2KB  |  66 lines

  1. /* Copyright (C) 1992, the Florida State University
  2.    Distributed by the Florida State University under the terms of the
  3.    GNU Library General Public License.
  4.  
  5. This file is part of Pthreads.
  6.  
  7. Pthreads is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Library General Public
  9. License as published by the Free Software Foundation (version 2).
  10.  
  11. Pthreads is distributed "AS IS" in the hope that it will be
  12. useful, but WITHOUT ANY WARRANTY; without even the implied
  13. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. See the GNU Library General Public License for more details.
  15.  
  16. You should have received a copy of the GNU Library General Public
  17. License along with Pthreads; see the file COPYING.  If not, write
  18. to the Free Software Foundation, 675 Mass Ave, Cambridge,
  19. MA 02139, USA.
  20.  
  21. Report problems and direct all questions to:
  22.  
  23.   pthreads-bugs@ada.cs.fsu.edu
  24.  
  25.   @(#)unistd.h    2.5 4/12/95
  26.  
  27. */
  28.  
  29. #ifndef _pthread_unistd_h
  30. #define _pthread_unistd_h
  31.  
  32. #ifndef LOCORE
  33.  
  34. #include <unistd.h>
  35.  
  36. /*
  37.  * We need to figure out (from header files) what system we are running on.
  38.  */
  39. #ifdef _UNISTD_H
  40. #ifndef SOLARIS_NP
  41. #define SOLARIS_NP
  42. #define SVR4_NP
  43. #endif _UNISTD_H
  44. #elif defined(SOLARIS_NP) || defined(SVR4_NP)
  45. #undef SOLARIS_NP
  46. #undef SVR4_NP
  47. #endif _UNISTD_H
  48.  
  49. #endif !LOCORE
  50.  
  51. #ifndef _POSIX_THREADS
  52. #define    _POSIX_THREADS
  53. #define    _POSIX_THREAD_PRIORITY_SCHEDULING
  54. #define _POSIX_THREAD_ATTR_STACKSIZE
  55. #ifdef SRP_NP
  56. #define _POSIX_THREADS_PRIO_PROTECT
  57. #else !SRP_NP
  58. #undef _POSIX_THREADS_PRIO_PROTECT
  59. #endif !SRP_NP
  60. #undef _POSIX_THREADS_PROCESS_SHARED
  61. #undef _POSIX_THREADS_PRIO_INHERIT
  62. #undef _POSIX_REENTRANT_FUNCTIONS
  63. #endif !_POSIX_THREADS
  64.  
  65. #endif /*!_pthread_unistd_h*/
  66.