diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2008-05-24 10:37:37 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2008-05-24 10:37:37 +0000 |
commit | 7f60d7580fdf25d48c1c5a770b0059a48f10fe47 (patch) | |
tree | 5a60bee4c9273b91d38613887d0cf432909fcd8a /net/spserver/files/patch-testthreadpool.cpp | |
parent | 65dbc71156afd7c76fae316a6b2c4f3fac217d79 (diff) |
Notes
Diffstat (limited to 'net/spserver/files/patch-testthreadpool.cpp')
-rw-r--r-- | net/spserver/files/patch-testthreadpool.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/spserver/files/patch-testthreadpool.cpp b/net/spserver/files/patch-testthreadpool.cpp index dad5b512f1f5..3fdb99f80927 100644 --- a/net/spserver/files/patch-testthreadpool.cpp +++ b/net/spserver/files/patch-testthreadpool.cpp @@ -1,15 +1,15 @@ ---- spserver/testthreadpool.cpp.orig Wed Aug 22 22:04:05 2007 -+++ spserver/testthreadpool.cpp Thu Aug 23 07:34:14 2007 -@@ -16,10 +16,10 @@ +--- spserver/testthreadpool.cpp.orig 2008-05-24 11:47:36.000000000 +0800 ++++ spserver/testthreadpool.cpp 2008-05-24 18:34:57.000000000 +0800 +@@ -18,10 +18,10 @@ void threadFunc( void *arg ) { - int seconds = (int) arg; -+ int seconds = atoi ((char *) arg); ++ int seconds = atoi ((char *)arg); fprintf( stdout, " in threadFunc %d\n", seconds ); -- fprintf( stdout, " thread#%ld\n", pthread_self() ); -+ fprintf( stdout, " thread#%ld\n", (long int)pthread_self() ); +- fprintf( stdout, " thread#%ld\n", sp_thread_self() ); ++ fprintf( stdout, " thread#%ld\n", (long int)sp_thread_self() ); sleep( seconds ); fprintf( stdout, " done threadFunc %d\n", seconds); } |