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-09-30 13:04:35 -06:00
|
|
|
_exit(0);
|
2008-09-27 15:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main (int argc, const char *argv[]) {
|
|
|
|
|
printf("pid: %u\n", getpid());
|
|
|
|
|
|
|
|
|
|
x_init ();
|
|
|
|
|
|
|
|
|
|
signal (SIGINT, signal_handler);
|
|
|
|
|
signal (SIGTERM, signal_handler);
|
|
|
|
|
signal (SIGPIPE, SIG_IGN);
|
2008-09-30 23:53:12 -06:00
|
|
|
|
|
|
|
|
[NSApplication sharedApplication];
|
|
|
|
|
[NSApp run];
|
2008-09-27 15:30:10 -07:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|