Main Page   Modules   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

/projects/cubeos/src_current/kernel/ssem.h

Go to the documentation of this file.
00001 /*  src_experimental/kernel/ssem.h
00002     CubeOS Version 0.4.90 experimental
00003     Copyright (C) 1999,2000 Holger Kenn
00004 
00005     CubeOS is free software; you can redistribute it and/or
00006     modify it under the terms of the GNU Library General Public
00007     License as published by the Free Software Foundation; either
00008     version 2 of the License, or any later version.
00009 
00010     CubeOS is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013     Library General Public License for more details.
00014 
00015 */  
00016 #ifndef SSEM_H
00017 
00018 #define SSEM_H
00019 
00029 typedef int ssem_t;
00030 
00031 #define ssem_post(x) x++; 
00032 #define ssem_signal(x) ssem_post(x) 
00033 #define ssem_wait(x) x--;while(x<0) 
00034 #define ssem_trywait(x) (x<0) 
00035 #define ssem_getvalue(x,i) (*i=x) 
00036 
00037 #define ssem_init(x,i,v) (x=v) 
00038 #define ssem_destroy(x) (0) 
00039 
00040 #endif

Generated on Thu Feb 20 15:38:45 2003 for cubeOS by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002