/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* efdaemon - Emebbed Fcode Interpreter daemon.
*
* return, invokes the Fcode interpreter via the shell script:
*/
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <strings.h>
#include <syslog.h>
#include <errno.h>
int debug = 0;
int
{
extern char *optarg;
char tc;
long nerr = 0;
int error;
switch (c) {
case 'd':
debug++;
break;
case '?':
exit(1);
}
}
/*
*/
/*
* Only output message if debug is on. On most systems,
* console.
*/
if (debug)
exit(1);
}
/*
*/
exit(1);
}
/*
* Fork a child then parent exits so we're a child of initd.
*/
exit(1);
}
if (pid)
exit(0);
/*
* detach from tty here.
*/
setpgrp();
close(0);
close(1);
close(2);
(void) dup(0);
(void) dup(0);
for (;;) {
nerr++;
if (nerr == 1)
sleep(1);
}
if (nerr > 1) {
}
nerr = 0;
if (nbytes < 0) {
continue;
}
if (debug)
nerr++;
if (nerr == 1)
sleep(1);
}
}
nerr = 0;
if (pid) {
if (tpid < 0)
else if (status) {
} else {
}
"ioctl(FC_SET_FCODE_ERROR)"
" failed\n");
}
} else if (debug)
continue;
}
if (debug)
getpid());
nerr++;
if (nerr == 1)
sleep(1);
}
}
return (0);
}