version 1.7, 2004/02/25 23:14:36 |
version 1.9, 2016/03/31 05:27:34 |
|
|
/* |
/* |
$OpenXM: OpenXM/src/kxx/oxd.c,v 1.6 2002/10/28 08:57:28 takayama Exp $ |
$OpenXM: OpenXM/src/kxx/oxd.c,v 1.8 2004/09/17 03:28:21 takayama Exp $ |
*/ |
*/ |
|
|
#include <stdio.h> |
#include <stdio.h> |
Line 137 childServerMain(int fd) { |
|
Line 137 childServerMain(int fd) { |
|
int st; |
int st; |
|
|
/* Starting oxd session */ |
/* Starting oxd session */ |
signal(SIGALRM,exitServer); |
mysignal(SIGALRM,exitServer); |
alarm(60); |
alarm(60); |
fp = fdopen(fd,"w+"); |
fp = fdopen(fd,"w+"); |
if (fp == NULL) oxdError("failed fdopen\n"); |
if (fp == NULL) oxdError("failed fdopen\n"); |
Line 244 oxdError(char *s) { |
|
Line 244 oxdError(char *s) { |
|
} |
} |
|
|
|
|
|
void *sGC_malloc(int n) { return (void *) GC_malloc(n); } |
|
|