[Libsysio-commit] HEAD: libsysio/src init.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2005-09-18 17:44:55
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28137/src Modified Files: init.c Log Message: Oops. Forgot to surround one addition with SYSIO_TRACING define. Fixed. It now build when ==with-tracing set to "no". Changed the copyright date. Index: init.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/init.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -w -b -B -p -r1.23 -r1.24 --- init.c 15 Sep 2005 21:46:23 -0000 1.23 +++ init.c 18 Sep 2005 17:44:45 -0000 1.24 @@ -9,7 +9,7 @@ * terms of the GNU Lesser General Public License * (see cit/LGPL or http://www.gnu.org/licenses/lgpl.html) * - * Cplant(TM) Copyright 1998-2004 Sandia Corporation. + * Cplant(TM) Copyright 1998-2005 Sandia Corporation. * Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive * license for use of this work by or on behalf of the US Government. * Export of this program may require a license from the United States @@ -139,11 +139,13 @@ _sysio_init() extern int _sysio_sockets_init(void); #endif +#if SYSIO_TRACING /* * Initialize tracing callback queues. */ TAILQ_INIT(&_sysio_entry_trace_head); TAILQ_INIT(&_sysio_exit_trace_head); +#endif err = _sysio_ioctx_init(); if (err) |