[Asterisk-cvs] asterisk/res res_config_odbc.c,1.1,1.2 res_crypto.c,1.8,1.9 res_indications.c,1.5,1.6 res_musiconhold.c,1.30,1.31 res_odbc.c,1.2,1.3 res_parking.c,1.24,1.25
citats at lists.digium.com
citats at lists.digium.com
Tue Jun 22 15:03:06 CDT 2004
- Previous message: [Asterisk-cvs] asterisk/include/asterisk channel.h,1.48,1.49 linkedlists.h,1.4,1.5
- Next message: [Asterisk-cvs] asterisk/formats format_g723.c,1.13,1.14 format_g726.c,1.3,1.4 format_g729.c,1.11,1.12 format_gsm.c,1.16,1.17 format_h263.c,1.5,1.6 format_ilbc.c,1.4,1.5 format_jpeg.c,1.5,1.6 format_pcm.c,1.12,1.13 format_pcm_alaw.c,1.11,1.12 format_vox.c,1.15,1.16 format_wav.c,1.17,1.18 format_wav_gsm.c,1.20,1.21
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/res
In directory mongoose.digium.com:/home/citats/cvs/asterisk/res
Modified Files:
res_config_odbc.c res_crypto.c res_indications.c
res_musiconhold.c res_odbc.c res_parking.c
Log Message:
Remove pthread.h from source. We should be using asterisk/lock.h everywhere instead (except in asterisk/lock.h).
Index: res_config_odbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_config_odbc.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- res_config_odbc.c 11 Jun 2004 00:12:35 -0000 1.1
+++ res_config_odbc.c 22 Jun 2004 18:49:00 -0000 1.2
@@ -17,10 +17,10 @@
#include <asterisk/config.h>
#include <asterisk/config_pvt.h>
#include <asterisk/module.h>
+#include <asterisk/lock.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
-#include <pthread.h>
#include <asterisk/res_odbc.h>
Index: res_crypto.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_crypto.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- res_crypto.c 13 Jun 2004 21:25:10 -0000 1.8
+++ res_crypto.c 22 Jun 2004 18:49:00 -0000 1.9
@@ -22,10 +22,10 @@
#include <asterisk/md5.h>
#include <asterisk/cli.h>
#include <asterisk/io.h>
+#include <asterisk/lock.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <stdio.h>
-#include <pthread.h>
#include <dirent.h>
#include <string.h>
#include <errno.h>
Index: res_indications.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_indications.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- res_indications.c 11 Feb 2004 00:17:48 -0000 1.5
+++ res_indications.c 22 Jun 2004 18:49:00 -0000 1.6
@@ -18,7 +18,6 @@
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
-#include <pthread.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
Index: res_musiconhold.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_musiconhold.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- res_musiconhold.c 13 Jun 2004 21:25:10 -0000 1.30
+++ res_musiconhold.c 22 Jun 2004 18:49:00 -0000 1.31
@@ -46,8 +46,6 @@
#include <unistd.h>
#include <sys/ioctl.h>
-#include <pthread.h>
-
static char *app0 = "MusicOnHold";
static char *app1 = "WaitMusicOnHold";
static char *app2 = "SetMusicOnHold";
Index: res_odbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_odbc.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- res_odbc.c 13 Jun 2004 01:54:53 -0000 1.2
+++ res_odbc.c 22 Jun 2004 18:49:00 -0000 1.3
@@ -19,10 +19,10 @@
#include <asterisk/pbx.h>
#include <asterisk/module.h>
#include <asterisk/cli.h>
+#include <asterisk/lock.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
-#include <pthread.h>
#include <asterisk/res_odbc.h>
#define MAX_ODBC_HANDLES 25
Index: res_parking.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_parking.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- res_parking.c 9 Jun 2004 01:45:08 -0000 1.24
+++ res_parking.c 22 Jun 2004 18:49:00 -0000 1.25
@@ -36,8 +36,6 @@
#include <sys/signal.h>
#include <netinet/in.h>
-#include <pthread.h>
-
#define DEFAULT_PARK_TIME 45000
static char *parkedcall = "ParkedCall";
- Previous message: [Asterisk-cvs] asterisk/include/asterisk channel.h,1.48,1.49 linkedlists.h,1.4,1.5
- Next message: [Asterisk-cvs] asterisk/formats format_g723.c,1.13,1.14 format_g726.c,1.3,1.4 format_g729.c,1.11,1.12 format_gsm.c,1.16,1.17 format_h263.c,1.5,1.6 format_ilbc.c,1.4,1.5 format_jpeg.c,1.5,1.6 format_pcm.c,1.12,1.13 format_pcm_alaw.c,1.11,1.12 format_vox.c,1.15,1.16 format_wav.c,1.17,1.18 format_wav_gsm.c,1.20,1.21
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list