w3thread.h

This is the verbatim text of the w3thread.h include file.
#ifndef __W3THREAD_H
#define __W3THREAD_H

#include <config.h>

#ifdef HAVE_LIBPTHREAD
#include <pthread.h>

#include <w3types.h>


typedef struct {
  void *startRoutine;
  void *arg;

  pthread_t      ID;
  pthread_attr_t attr;
} w3Thread;


w3Thread* w3ThreadRun (void* start_func, void* arg);


boolean w3ThreadJoin (w3Thread *t);


boolean w3ThreadDestroy (w3Thread *t);

#endif
#endif

Generated at Thu Jun 1 21:36:22 2000 for HTTP Client advanced version by doxygen  written by Dimitri van Heesch, © 1997-1999