/*
silcmutex.h
-
+
Author: Pekka Riikonen <priikone@silcnet.org>
-
+
Copyright (C) 2001 - 2005 Pekka Riikonen
-
+
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; version 2 of the License.
-
+
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
* DESCRIPTION
*
* Interface for the SILC Mutex locking implementation. This is platform
- * independent mutual exclusion interface for applications that need
+ * independent mutual exclusion interface for applications that need
* concurrency control.
*
***/
/****s* silcutil/SilcMutexAPI/SilcMutex
*
* NAME
- *
+ *
* typedef struct SilcMutexStruct *SilcMutex;
*
* DESCRIPTION
/****d* silcutil/SilcMutexAPI/SILC_MUTEX_DEFINE
*
* NAME
- *
+ *
* #define SILC_MUTEX_DEFINE(name) ...
*
* DESCRIPTION
/*
silcmutex.h
-
+
Author: Pekka Riikonen <priikone@silcnet.org>
-
+
Copyright (C) 2001 - 2005 Pekka Riikonen
-
+
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; version 2 of the License.
-
+
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
*
* Interface for SILC Thread implementation. This is platform independent
* interface of threads for applications that need concurrent execution
- * with the application's main thread. The threads created with this
+ * with the application's main thread. The threads created with this
* interface executes concurrently with the calling thread.
*
***/
/****s* silcutil/SilcThreadAPI/SilcThread
*
* NAME
- *
+ *
* typedef struct SilcThreadStruct *SilcThread;
*
* DESCRIPTION
*
* SYNOPSIS
*
- * SilcThread silc_thread_create(SilcThreadStart start_func,
+ * SilcThread silc_thread_create(SilcThreadStart start_func,
* void *context, bool waitable);
* DESCRIPTION
*