2000-09-01 05:14:37 +02:00
|
|
|
#include "includes.h"
|
2000-06-18 07:43:25 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_NEXT
|
|
|
|
#include <errno.h>
|
2000-08-30 01:11:30 +02:00
|
|
|
#include <sys/wait.h>
|
2000-06-18 07:43:25 +02:00
|
|
|
#include "next-posix.h"
|
|
|
|
|
2000-08-30 01:11:30 +02:00
|
|
|
pid_t
|
|
|
|
posix_wait(int *status)
|
|
|
|
{
|
|
|
|
#undef wait /* Use NeXT's wait() function */
|
|
|
|
union wait statusp;
|
|
|
|
pid_t wait_pid;
|
|
|
|
|
|
|
|
wait_pid = wait(&statusp);
|
|
|
|
status = (int *) statusp.w_status;
|
|
|
|
|
|
|
|
return wait_pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
posix_utime(char *filename,struct utimbuf *buf)
|
|
|
|
{
|
|
|
|
time_t timep[2];
|
|
|
|
|
|
|
|
timep[0] = buf->actime;
|
|
|
|
timep[1] = buf->modtime;
|
|
|
|
|
|
|
|
#undef utime /* Use NeXT's utime() function */
|
|
|
|
return utime(filename,timep);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-18 07:43:25 +02:00
|
|
|
int
|
|
|
|
waitpid(int pid, int *stat_loc, int options)
|
|
|
|
{
|
|
|
|
if (pid <= 0) {
|
|
|
|
if (pid != -1) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
pid = 0; /* wait4() expects pid=0 for indiscriminate wait. */
|
|
|
|
}
|
|
|
|
return wait4(pid, (union wait *)stat_loc, options, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t setsid(void)
|
|
|
|
{
|
|
|
|
return setpgrp(0, getpid());
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcgetattr(int fd, struct termios *t)
|
|
|
|
{
|
|
|
|
return (ioctl(fd, TIOCGETA, t));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcsetattr(int fd, int opt, const struct termios *t)
|
|
|
|
{
|
|
|
|
struct termios localterm;
|
|
|
|
|
|
|
|
if (opt & TCSASOFT) {
|
|
|
|
localterm = *t;
|
|
|
|
localterm.c_cflag |= CIGNORE;
|
|
|
|
t = &localterm;
|
|
|
|
}
|
|
|
|
switch (opt & ~TCSASOFT) {
|
|
|
|
case TCSANOW:
|
|
|
|
return (ioctl(fd, TIOCSETA, t));
|
|
|
|
case TCSADRAIN:
|
|
|
|
return (ioctl(fd, TIOCSETAW, t));
|
|
|
|
case TCSAFLUSH:
|
|
|
|
return (ioctl(fd, TIOCSETAF, t));
|
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int tcsetpgrp(int fd, pid_t pgrp)
|
|
|
|
{
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = pgrp;
|
|
|
|
return (ioctl(fd, TIOCSPGRP, &s));
|
|
|
|
}
|
|
|
|
|
|
|
|
speed_t cfgetospeed(const struct termios *t)
|
|
|
|
{
|
|
|
|
return (t->c_ospeed);
|
|
|
|
}
|
|
|
|
|
|
|
|
speed_t cfgetispeed(const struct termios *t)
|
|
|
|
{
|
|
|
|
return (t->c_ispeed);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
cfsetospeed(struct termios *t,int speed)
|
|
|
|
{
|
|
|
|
t->c_ospeed = speed;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-09 15:26:27 +02:00
|
|
|
cfsetispeed(struct termios *t, int speed)
|
2000-06-18 07:43:25 +02:00
|
|
|
{
|
|
|
|
t->c_ispeed = speed;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_NEXT */
|