/* Copyright (C) 1998 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: gpsync.h,v 1.2.6.1.2.1 2003/01/17 00:49:02 giles Exp $ */ /* Interface to platform-dependent synchronization primitives */ #if !defined(gpsync_INCLUDED) # define gpsync_INCLUDED /* Initial version 4/1/98 by John Desrosiers (soho@crl.com). */ /* 8/9/98 L. Peter Deutsch (ghost@aladdin.com) Changed ...sizeof to procedures, added some comments. */ /* -------- Synchronization primitives ------- */ /* * Semaphores support wait/signal semantics: a wait operation will allow * control to proceed iff the number of signals since semaphore creation * is greater than the number of waits. */ typedef struct { void *dummy_; } gp_semaphore; uint gp_semaphore_sizeof(P0()); /* * Hack: gp_semaphore_open(0) succeeds iff it's OK for the memory manager * to move a gp_semaphore in memory. */ int gp_semaphore_open(P1(gp_semaphore * sema)); int gp_semaphore_close(P1(gp_semaphore * sema)); int gp_semaphore_wait(P1(gp_semaphore * sema)); int gp_semaphore_signal(P1(gp_semaphore * sema)); /* * Monitors support enter/leave semantics: at most one thread can have * entered and not yet left a given monitor. */ typedef struct { void *dummy_; } gp_monitor; uint gp_monitor_sizeof(P0()); /* * Hack: gp_monitor_open(0) succeeds iff it's OK for the memory manager * to move a gp_monitor in memory. */ int gp_monitor_open(P1(gp_monitor * mon)); int gp_monitor_close(P1(gp_monitor * mon)); int gp_monitor_enter(P1(gp_monitor * mon)); int gp_monitor_leave(P1(gp_monitor * mon)); /* * A new thread starts by calling a procedure, passing it a void * that * allows it to gain access to whatever data it needs. */ typedef void (*gp_thread_creation_callback_t) (P1(void *)); int gp_create_thread(P2(gp_thread_creation_callback_t, void *)); #endif /* !defined(gpsync_INCLUDED) */