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 / limits.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  45 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.   @(#)limits.h    1.20 2/7/94
  26.  
  27. */
  28.  
  29. #ifndef _pthread_limits_h
  30. #define _pthread_limits_h
  31.  
  32. #ifndef STAND_ALONE_NP
  33. #include <limits.h>
  34. #endif STAND_ALONE_NP
  35.  
  36. #ifndef _POSIX_DATAKEYS_MAX
  37. #define _POSIX_DATAKEYS_MAX     8
  38. #endif
  39.  
  40. #ifndef _POSIX_TIMER_MAX
  41. #define _POSIX_TIMER_MAX  32
  42. #endif
  43.  
  44. #endif /*!_pthread_limits_h*/
  45.