Improved the ROBOdoc documentation generation process.
[runtime.git] / lib / silcutil / silcthread.h
index 8f2f7094dad83867edeca6add839c187c997fddb..06becee09d32015feba4500786eb995d27ede943 100644 (file)
@@ -1,33 +1,33 @@
-/****h* silcutil/silcthread.h
- *
- * NAME
- *
- * silcmutex.h
- *
- * COPYRIGHT
- *
- * Author: Pekka Riikonen <priikone@silcnet.org>
- *
- * Copyright (C) 2001 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; 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.
+/*
+
+  silcmutex.h
+  Author: Pekka Riikonen <priikone@silcnet.org>
+  Copyright (C) 2001 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; 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.
+
+*/
+
+/****h* silcutil/SILC Thread Interface
  *
  * DESCRIPTION
  *
  * Interface for SILC Thread implementation. This is platform independent
- * implementation of threads for applications that need concurrent execution
+ * interface of threads for applications that need concurrent execution
  * with the application's main thread. The threads created with this 
  * interface executes concurrently with the calling thread.
  *
- */
+ ***/
 
 #ifndef SILCTHREAD_H
 #define SILCTHREAD_H
@@ -72,8 +72,8 @@ typedef void *(*SilcThreadStart)(void *context);
  *
  * SYNOPSIS
  *
- *    SilcThread silc_thread_create(SilcThreadStart start_func, void *context);
- *
+ *    SilcThread silc_thread_create(SilcThreadStart start_func, 
+ *                                  void *context, bool waitable);
  * DESCRIPTION
  *
  *    Creates a new thread. The `start_func' with `context' will be