From: Kidong L. <bri...@us...> - 2004-05-24 01:34:23
|
Update of /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/common/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10631/src/xpt/bindings/common/linux Modified Files: xptmutex.c Log Message: Modified comments to doxygen-readable Removed duplicated comments Index: xptmutex.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/common/linux/xptmutex.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** xptmutex.c 6 Aug 2002 21:03:21 -0000 1.1 --- xptmutex.c 24 May 2004 01:33:39 -0000 1.2 *************** *** 1,8 **** ! /*************************************************************************/ ! /* module: SyncML HTTP protocol driver */ ! /* file: src/xpt/linux/xptihttp.h */ ! /* target system: Linux */ ! /* target OS: Linux */ ! /*************************************************************************/ --- 1,16 ---- ! /** ! * @file ! * SyncML HTTP protocol driver ! * ! * @target_system Linux ! * @target_os Linux ! * @description This module contains Linux specific definitions for the ! * HTTP protocol handler for SyncML. ! * ! * We could use pthread_mutex_lock(), etc., on Linux, but since the pthread ! * library on Linux is not universally installed, and since this code isn't ! * intended for multithreaded applications just yet, anyway, we use nothing ! * for now. This should be changed for proper multithreaded support on Linux. ! */ *************** *** 43,56 **** */ - /** - * This module contains Linux specific definitions for the - * HTTP protocol handler for SyncML. - * - * We could use pthread_mutex_lock(), etc., on Linux, but since the pthread - * library on Linux is not universally installed, and since this code isn't - * intended for multithreaded applications just yet, anyway, we use nothing - * for now. This should be changed for proper multithreaded support on Linux. - */ - #include <stddef.h> #include "xptmutex.h" --- 51,54 ---- |