CVS: beepcore-c/threaded_os/transport bp_fcbeeptcp.c,1.17,1.18 bp_fcbeeptcp.h,1.7,1.8 bp_fiostate.c,1.15,1.16 bp_fiostate.h,1.8,1.9 bp_fpoll.c,1.11,1.12 bp_fpollmgr.c,1.17,1.18 bp_fpollmgr.h,1.4,1.5 bp_tcp.c,1.19,1.20 bp_tcp.h,1.14,1.15
Chris Hanson <[email protected]> Fri, 02 Aug 2002 08:08:35 -0700
| Newsgroups | gmane.network.beep.beepcore.c.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/beepcore-c/beepcore-c/threaded_os/transport In directory usw-pr-cvs1:/tmp/cvs-serv31992/threaded_os/transport Modified Files: bp_fcbeeptcp.c bp_fcbeeptcp.h bp_fiostate.c bp_fiostate.h bp_fpoll.c bp_fpollmgr.c bp_fpollmgr.h bp_tcp.c bp_tcp.h Log Message: Reorganize symlinks to be under a single system directory, like this: #include <beepcore-c/FOO.h> Change install rules to put them there. Index: bp_fcbeeptcp.c =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_fcbeeptcp.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** bp_fcbeeptcp.c 20 Apr 2002 21:49:07 -0000 1.17 --- bp_fcbeeptcp.c 2 Aug 2002 15:08:32 -0000 1.18 *************** *** 16,26 **** #include <sys/types.h> #endif ! #include "../../core/generic/CBEEP.h" ! #include "../../core/generic/CBEEPint.h" ! #include "../utility/logutil.h" ! #include "../utility/semutex.h" ! #include "../wrapper/bp_wrapper.h" ! #include "../wrapper/bp_wrapper_private.h" ! #include "bp_fpollmgr.h" sem_t upper_sem; --- 16,26 ---- #include <sys/types.h> #endif ! #include <beepcore-c/CBEEP.h> ! #include <beepcore-c/CBEEPint.h> ! #include <beepcore-c/logutil.h> ! #include <beepcore-c/semutex.h> ! #include <beepcore-c/bp_wrapper.h> ! #include <beepcore-c/bp_wrapper_private.h> ! #include <beepcore-c/bp_fpollmgr.h> sem_t upper_sem; Index: bp_fcbeeptcp.h =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_fcbeeptcp.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** bp_fcbeeptcp.h 20 Apr 2002 21:49:08 -0000 1.7 --- bp_fcbeeptcp.h 2 Aug 2002 15:08:32 -0000 1.8 *************** *** 15,22 **** #ifndef CBEEPTCP_H #define CBEEPTCP_H 1 ! #include "../../utility/bp_slist_utility.h" ! #include "bp_fiostate.h" ! #include "../wrapper/bp_wrapper.h" ! #include "../wrapper/bp_wrapper_private.h" /* data definition for initiating client */ --- 15,22 ---- #ifndef CBEEPTCP_H #define CBEEPTCP_H 1 ! #include <beepcore-c/bp_slist_utility.h> ! #include <beepcore-c/bp_fiostate.h> ! #include <beepcore-c/bp_wrapper.h> ! #include <beepcore-c/bp_wrapper_private.h> /* data definition for initiating client */ Index: bp_fiostate.c =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_fiostate.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** bp_fiostate.c 1 Aug 2002 22:07:05 -0000 1.15 --- bp_fiostate.c 2 Aug 2002 15:08:32 -0000 1.16 *************** *** 22,33 **** #include <sys/socket.h> #endif ! #include "bp_fiostate.h" ! #include "../utility/semutex.h" ! #include "../../utility/bp_slist_utility.h" ! #include "../wrapper/bp_wrapper.h" ! #include "../wrapper/bp_wrapper_private.h" ! #include "../utility/workthread.h" ! #include "../utility/logutil.h" ! #include "../../core/generic/CBEEPint.h" extern int poll_node_add_iostate(IO_STATE* ios); --- 22,33 ---- #include <sys/socket.h> #endif ! #include <beepcore-c/bp_fiostate.h> ! #include <beepcore-c/semutex.h> ! #include <beepcore-c/bp_slist_utility.h> ! #include <beepcore-c/bp_wrapper.h> ! #include <beepcore-c/bp_wrapper_private.h> ! #include <beepcore-c/workthread.h> ! #include <beepcore-c/logutil.h> ! #include <beepcore-c/CBEEPint.h> extern int poll_node_add_iostate(IO_STATE* ios); Index: bp_fiostate.h =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_fiostate.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** bp_fiostate.h 2 Jun 2002 00:12:57 -0000 1.8 --- bp_fiostate.h 2 Aug 2002 15:08:32 -0000 1.9 *************** *** 16,25 **** #define IO_STATE_H 1 ! #include "../../core/generic/CBEEP.h" ! #include "../../utility/bp_slist_utility.h" ! #include "../../utility/bp_queue.h" ! #include "../../utility/bp_hash.h" ! #include "../utility/semutex.h" #ifndef WIN32 #define HAVE_POLL --- 16,25 ---- #define IO_STATE_H 1 ! #include <beepcore-c/CBEEP.h> ! #include <beepcore-c/bp_slist_utility.h> ! #include <beepcore-c/bp_queue.h> ! #include <beepcore-c/bp_hash.h> ! #include <beepcore-c/semutex.h> #ifndef WIN32 #define HAVE_POLL Index: bp_fpoll.c =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_fpoll.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** bp_fpoll.c 20 Apr 2002 21:49:08 -0000 1.11 --- bp_fpoll.c 2 Aug 2002 15:08:32 -0000 1.12 *************** *** 21,26 **** #include <poll.h> #endif ! #include "../utility/semutex.h" ! #include "bp_fiostate.h" #ifndef FALSE --- 21,26 ---- #include <poll.h> #endif ! #include <beepcore-c/semutex.h> ! #include <beepcore-c/bp_fiostate.h> #ifndef FALSE Index: bp_fpollmgr.c =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_fpollmgr.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** bp_fpollmgr.c 2 Jun 2002 00:12:57 -0000 1.17 --- bp_fpollmgr.c 2 Aug 2002 15:08:32 -0000 1.18 *************** *** 21,33 **** #include <errno.h> #endif ! #include "../utility/semutex.h" ! #include "../../utility/bp_slist_utility.h" ! #include "bp_fpollmgr.h" ! #include "bp_fiostate.h" ! #include "../wrapper/bp_wrapper.h" ! #include "../wrapper/bp_wrapper_private.h" ! #include "../utility/logutil.h" ! #include "../../core/generic/CBEEP.h" ! #include "../../core/generic/CBEEPint.h" extern int handle_read_event(IO_STATE* ios); --- 21,33 ---- #include <errno.h> #endif ! #include <beepcore-c/semutex.h> ! #include <beepcore-c/bp_slist_utility.h> ! #include <beepcore-c/bp_fpollmgr.h> ! #include <beepcore-c/bp_fiostate.h> ! #include <beepcore-c/bp_wrapper.h> ! #include <beepcore-c/bp_wrapper_private.h> ! #include <beepcore-c/logutil.h> ! #include <beepcore-c/CBEEP.h> ! #include <beepcore-c/CBEEPint.h> extern int handle_read_event(IO_STATE* ios); Index: bp_fpollmgr.h =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_fpollmgr.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bp_fpollmgr.h 27 Mar 2002 08:53:40 -0000 1.4 --- bp_fpollmgr.h 2 Aug 2002 15:08:32 -0000 1.5 *************** *** 16,22 **** #define IW_POLL_MGR_H 1 #ifndef WIN32 ! #include "../../utility/bp_slist_utility.h" #endif ! #include "../utility/semutex.h" #ifdef __cplusplus --- 16,22 ---- #define IW_POLL_MGR_H 1 #ifndef WIN32 ! #include <beepcore-c/bp_slist_utility.h> #endif ! #include <beepcore-c/semutex.h> #ifdef __cplusplus Index: bp_tcp.c =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_tcp.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** bp_tcp.c 27 Apr 2002 04:40:22 -0000 1.19 --- bp_tcp.c 2 Aug 2002 15:08:32 -0000 1.20 *************** *** 32,40 **** #endif ! #include "../wrapper/bp_wrapper.h" ! #include "../utility/bp_config.h" ! #include "../utility/logutil.h" ! #include "bp_fiostate.h" ! #include "bp_tcp.h" #define MAX_INT_STRING_LENGTH 10 --- 32,40 ---- #endif ! #include <beepcore-c/bp_wrapper.h> ! #include <beepcore-c/bp_config.h> ! #include <beepcore-c/logutil.h> ! #include <beepcore-c/bp_fiostate.h> ! #include <beepcore-c/bp_tcp.h> #define MAX_INT_STRING_LENGTH 10 Index: bp_tcp.h =================================================================== RCS file: /cvsroot/beepcore-c/beepcore-c/threaded_os/transport/bp_tcp.h,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** bp_tcp.h 27 Mar 2002 08:53:40 -0000 1.14 --- bp_tcp.h 2 Aug 2002 15:08:32 -0000 1.15 *************** *** 16,20 **** #define BP_TCP_H ! #include "../wrapper/bp_wrapper.h" /** --- 16,20 ---- #define BP_TCP_H ! #include <beepcore-c/bp_wrapper.h> /** ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf