pthread.inc 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Peter Vreman
  5. member of the Free Pascal development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This file contains a pthread.h headerconversion,
  9. and should contain an interface to the threading library to be
  10. used by systhrd, preferably in a somewhat compatible notation
  11. (compared to the other OSes).
  12. As a start, I simply used libc_r
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  16. **********************************************************************}
  17. CONST PTHREAD_EXPLICIT_SCHED = 0;
  18. PTHREAD_CREATE_DETACHED = 1;
  19. PTHREAD_SCOPE_PROCESS = 0;
  20. TYPE
  21. ppthread_t = ^pthread_t;
  22. ppthread_key_t = ^pthread_key_t;
  23. ppthread_mutex_t= ^pthread_mutex_t;
  24. ppthread_attr_t = ^pthread_attr_t;
  25. __destr_func_t = procedure (p :pointer);cdecl;
  26. __startroutine_t= function (p :pointer):pointer;cdecl;
  27. ppthread_mutexattr_t = ^pthread_mutexattr_t;
  28. ppthread_mutex_attr_t = ^pthread_mutexattr_t;
  29. sem_t = cint;
  30. psem_t = ^sem_t;
  31. TSemaphore = sem_t;
  32. PSemaphore = ^TSemaphore;
  33. function pthread_getspecific (t : pthread_key_t):pointer; cdecl; external;
  34. function pthread_setspecific (t : pthread_key_t;p:pointer):cint; cdecl; external;
  35. function pthread_key_create (p : ppthread_key_t;f: __destr_func_t):cint; cdecl;external;
  36. function pthread_attr_init (p : ppthread_key_t):cint; cdecl; external;
  37. function pthread_attr_setinheritsched(p : ppthread_attr_t;i:cint):cint; cdecl; external;
  38. function pthread_attr_setscope (p : ppthread_attr_t;i:cint):cint;cdecl;external;
  39. function pthread_attr_setdetachstate (p : ppthread_attr_t;i:cint):cint;cdecl;external;
  40. function pthread_create ( p: ppthread_t;attr : ppthread_attr_t;f:__startroutine_t;arg:pointer):cint;cdecl;external;
  41. procedure pthread_exit ( p: pointer); cdecl;external;
  42. function pthread_self:cint; cdecl;external;
  43. function pthread_mutex_init (p:ppthread_mutex_t;o:ppthread_mutex_attr_t):cint; cdecl;external;
  44. function pthread_mutex_destroy (p:ppthread_mutex_attr_t):cint; cdecl;external;
  45. function pthread_mutex_lock (p:ppthread_mutex_attr_t):cint; cdecl;external;
  46. function pthread_mutex_unlock (p:ppthread_mutex_attr_t):cint; cdecl;external;
  47. function pthread_cancel(_para1:pthread_t):cint;cdecl;external;
  48. function pthread_detach(_para1:pthread_t):cint;cdecl;external;
  49. function pthread_join(_para1:pthread_t; _para2:Ppointer):cint;cdecl;external;
  50. function sem_init(__sem:Psem_t; __pshared:cint;__value:dword):cint;cdecl; external;
  51. function sem_destroy(__sem:Psem_t):cint;cdecl;external ;
  52. function sem_close(__sem:Psem_t):cint;cdecl;external ;
  53. function sem_unlink(__name:Pchar):cint;cdecl;external ;
  54. function sem_wait(__sem:Psem_t):cint;cdecl;external ;
  55. function sem_trywait(__sem:Psem_t):cint;cdecl;external ;
  56. function sem_post(__sem:Psem_t):cint;cdecl;external ;
  57. function sem_getvalue(__sem:Psem_t; __sval:Pcint):cint;cdecl;external;
  58. function pthread_mutexattr_init(_para1:Ppthread_mutexattr_t):cint;cdecl;external;
  59. function pthread_mutexattr_destroy(_para1:Ppthread_mutexattr_t):cint;cdecl;external;
  60. function pthread_mutexattr_gettype(_para1:Ppthread_mutexattr_t; _para2:Pcint):cint;cdecl;external;
  61. function pthread_mutexattr_settype(_para1:Ppthread_mutexattr_t; _para2:cint):cint;cdecl;external;
  62. {
  63. $Log$
  64. Revision 1.5 2004-09-10 15:15:45 marco
  65. * small glitch fixes
  66. Revision 1.4 2004/09/09 20:29:06 jonas
  67. * fixed definition of pthread_mutex_t for non-linux targets (and for
  68. linux as well, actually).
  69. * base libpthread definitions are now in ptypes.inc, included in unixtype
  70. They sometimes have an extra underscore in front of their name, in
  71. case they were also exported by the packages/base/pthreads unit, so
  72. they can keep their original name there
  73. * cthreadds unit now imports systuils, because it uses exceptions (it
  74. already did so before as well)
  75. * fixed many linux definitions of libpthread functions in pthrlinux.inc
  76. (integer -> cint etc)
  77. + added culonglong type to ctype.inc
  78. Revision 1.3 2004/05/23 15:30:55 marco
  79. * basicevent, still untested
  80. Revision 1.2 2003/11/27 20:24:10 michael
  81. + Redefined ppthread_mutex_t
  82. Revision 1.1 2003/11/18 22:33:42 marco
  83. * moved from systhrds.pp
  84. }