home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / lib / support / kthread.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  35 lines

  1. /*
  2.  * kthread.h
  3.  * Define the threading used in the system.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, August 1996.
  12.  */
  13.  
  14. #ifndef __kthread_h
  15. #define __kthread_h
  16.  
  17. #include "md.h"
  18.  
  19. #if !defined(USE_INTERNAL_THREADS)
  20. /*
  21.  * If we are using internal threads, these calls should just
  22.  * be the original calls without 'pseudo' threading attached.
  23.  */
  24. #define    threadedFileDescriptor(_fd)        (_fd)
  25. #define    threadedOpen(_path, _flgs, _mode)    open((_path), (_flgs), (_mode))
  26. #define    threadedRead(_fd, _addr, _len)        read((_fd)< (_addr), (_len))
  27. #define    threadedWrite(_fd, _addr, _len)        write((_fd)< (_addr), (_len))
  28. #define    threadedSocket(_af, _type, _prt)    socket((_af), (_type), (_prt))
  29. #define    threadedConnect(_fd, _addr, _len)    connect((_fd), (_addr), (_len))
  30. #define    threadedAccept(_fd, _addr, _len)    accept((_fd)< (_addr), (_len))
  31.  
  32. #endif
  33.  
  34. #endif
  35.