server: Remove sync_namespace.

This commit is contained in:
Vitaliy Margolen 2005-12-05 14:52:18 +01:00 committed by Alexandre Julliard
parent d13095bc84
commit 4e36524916
2 changed files with 0 additions and 7 deletions

View File

@ -40,9 +40,6 @@ int master_socket_timeout = 3; /* master socket timeout in seconds, default is
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() );

View File

@ -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 */