mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 06:06:13 +00:00
37 lines
789 B
C
37 lines
789 B
C
/*
|
|
* Server main function
|
|
*
|
|
* Copyright (C) 1998 Alexandre Julliard
|
|
*/
|
|
|
|
#include <ctype.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "server.h"
|
|
#include "server/object.h"
|
|
|
|
int main( int argc, char *argv[] )
|
|
{
|
|
int fd;
|
|
|
|
if (argc != 2) goto error;
|
|
if (!isdigit( *argv[1] )) goto error;
|
|
fd = atoi( argv[1] );
|
|
/* make sure the fd is valid */
|
|
if (fcntl( fd, F_GETFL, 0 ) == -1) goto error;
|
|
|
|
debug_level = 1;
|
|
|
|
if (debug_level) fprintf( stderr, "Server: starting (pid=%d)\n", getpid() );
|
|
server_init( fd );
|
|
select_loop();
|
|
if (debug_level) fprintf( stderr, "Server: exiting (pid=%d)\n", getpid() );
|
|
exit(0);
|
|
|
|
error:
|
|
fprintf( stderr, "%s: must be run from Wine.\n", argv[0] );
|
|
exit(1);
|
|
}
|