Vitaliy Margolen : server: Remove sync_namespace.
Module: wine Branch: refs/heads/master Commit: 4e3652491600f1d434eaa1b67fe83277b7ff7101 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=4e3652491600f1d434eaa1b6... Author: Vitaliy Margolen <wine-patch(a)kievinfo.com> Date: Mon Dec 5 14:52:18 2005 +0100 server: Remove sync_namespace. --- server/main.c | 4 ---- server/object.h | 3 --- 2 files changed, 0 insertions(+), 7 deletions(-) diff --git a/server/main.c b/server/main.c index 7f07aac..43d3cf7 100644 --- a/server/main.c +++ b/server/main.c @@ -40,9 +40,6 @@ int master_socket_timeout = 3; /* maste int foreground = 0; const char *server_argv0; -/* name space for synchronization objects */ -struct namespace *sync_namespace; - /* parse-line args */ /* FIXME: should probably use getopt, and add a (more complete?) help option */ @@ -130,7 +127,6 @@ int main( int argc, char *argv[] ) sock_init(); open_master_socket(); - sync_namespace = create_namespace( 37 ); setvbuf( stderr, NULL, _IOLBF, 0 ); if (debug_level) fprintf( stderr, "wineserver: starting (pid=%ld)\n", (long) getpid() ); diff --git a/server/object.h b/server/object.h index ba7ca90..62c0015 100644 --- a/server/object.h +++ b/server/object.h @@ -214,7 +214,4 @@ extern const char *server_argv0; /* server start time used for GetTickCount() */ extern time_t server_start_time; -/* name space for synchronization objects */ -extern struct namespace *sync_namespace; - #endif /* __WINE_SERVER_OBJECT_H */
participants (1)
-
Alexandre Julliard