From: Pekka Riikonen Date: Sun, 1 May 2005 20:54:01 +0000 (+0000) Subject: updates. X-Git-Tag: autodist.1.3~8 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=e342fdd5a38ebed2f67d418c26242fe07ff14c47 updates. --- diff --git a/lib/silcutil/silcmutex.h b/lib/silcutil/silcmutex.h index 50c1a606..abd6e043 100644 --- a/lib/silcutil/silcmutex.h +++ b/lib/silcutil/silcmutex.h @@ -1,15 +1,15 @@ /* silcmutex.h - + Author: Pekka Riikonen - + 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 @@ -22,7 +22,7 @@ * 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. * ***/ @@ -33,7 +33,7 @@ /****s* silcutil/SilcMutexAPI/SilcMutex * * NAME - * + * * typedef struct SilcMutexStruct *SilcMutex; * * DESCRIPTION @@ -48,7 +48,7 @@ typedef struct SilcMutexStruct *SilcMutex; /****d* silcutil/SilcMutexAPI/SILC_MUTEX_DEFINE * * NAME - * + * * #define SILC_MUTEX_DEFINE(name) ... * * DESCRIPTION diff --git a/lib/silcutil/silcthread.h b/lib/silcutil/silcthread.h index e96625f1..c1ecf92d 100644 --- a/lib/silcutil/silcthread.h +++ b/lib/silcutil/silcthread.h @@ -1,15 +1,15 @@ /* silcmutex.h - + Author: Pekka Riikonen - + 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 @@ -23,7 +23,7 @@ * * 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. * ***/ @@ -36,7 +36,7 @@ /****s* silcutil/SilcThreadAPI/SilcThread * * NAME - * + * * typedef struct SilcThreadStruct *SilcThread; * * DESCRIPTION @@ -71,7 +71,7 @@ typedef void *(*SilcThreadStart)(void *context); * * SYNOPSIS * - * SilcThread silc_thread_create(SilcThreadStart start_func, + * SilcThread silc_thread_create(SilcThreadStart start_func, * void *context, bool waitable); * DESCRIPTION *