2008-09-30 13:04:35 -06:00
|
|
|
/* app-main.m
|
2008-09-27 15:30:10 -07:00
|
|
|
$Id: main.m,v 1.29 2007-04-07 20:39:03 jharper Exp $
|
|
|
|
|
|
2008-09-30 13:04:35 -06:00
|
|
|
Copyright (c) 2002, 2008 Apple Computer, Inc. All rights reserved. */
|
2008-09-27 15:30:10 -07:00
|
|
|
|
|
|
|
|
#include "pbproxy.h"
|
|
|
|
|
#import "x-selection.h"
|
|
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <unistd.h> /*for getpid*/
|
2008-09-30 23:53:12 -06:00
|
|
|
#include <Cocoa/Cocoa.h>
|
2008-09-27 15:30:10 -07:00
|
|
|
|
|
|
|
|
static void signal_handler (int sig) {
|
2008-10-21 11:19:06 -07:00
|
|
|
switch(sig) {
|
|
|
|
|
case SIGHUP:
|
2008-11-15 19:52:34 -08:00
|
|
|
xpbproxy_prefs_reload = YES;
|
2008-10-21 11:19:06 -07:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
_exit(EXIT_SUCCESS);
|
|
|
|
|
}
|
2008-09-27 15:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main (int argc, const char *argv[]) {
|
2008-11-15 19:52:34 -08:00
|
|
|
#ifdef DEBUG
|
2008-09-27 15:30:10 -07:00
|
|
|
printf("pid: %u\n", getpid());
|
2008-10-04 18:54:15 -07:00
|
|
|
#endif
|
|
|
|
|
|
2008-11-15 19:52:34 -08:00
|
|
|
xpbproxy_is_standalone = YES;
|
|
|
|
|
|
|
|
|
|
if(!xpbproxy_init())
|
2008-10-21 11:19:06 -07:00
|
|
|
return EXIT_FAILURE;
|
2008-09-27 15:30:10 -07:00
|
|
|
|
|
|
|
|
signal (SIGINT, signal_handler);
|
|
|
|
|
signal (SIGTERM, signal_handler);
|
2008-10-21 11:19:06 -07:00
|
|
|
signal (SIGHUP, signal_handler);
|
2008-09-27 15:30:10 -07:00
|
|
|
signal (SIGPIPE, SIG_IGN);
|
2008-09-30 23:53:12 -06:00
|
|
|
|
|
|
|
|
[NSApplication sharedApplication];
|
|
|
|
|
[NSApp run];
|
2008-09-27 15:30:10 -07:00
|
|
|
|
2008-10-21 11:19:06 -07:00
|
|
|
return EXIT_SUCCESS;
|
2008-09-27 15:30:10 -07:00
|
|
|
}
|