~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to packages/base/libc/semaphoreh.inc

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2005-05-30 11:59:10 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050530115910-x5pbzm4qqta4i94h
Tags: 2.0.0-2
debian/fp-compiler.postinst.in: forgot to reapply the patch that
correctly creates the slave link to pc(1).  (Closes: #310907)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    Borland compatibility types
28
28
  ---------------------------------------------------------------------}
29
29
 
30
 
Type  
 
30
Type
31
31
  TSemaphore = sem_t;
32
32
  PSemaphore = ^TSemaphore;
33
 
  
 
33
 
34
34
function sem_init(var __sem: sem_t; __pshared:longint; __value:dword):longint;cdecl;external threadslib name 'sem_init';
35
35
function sem_destroy(var __sem: sem_t):longint;cdecl;external threadslib name 'sem_destroy';
36
36
function sem_close(var __sem: sem_t):longint;cdecl;external threadslib name 'sem_close';