diff options
author | tjr <tjr@FreeBSD.org> | 2003-10-29 10:55:56 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-10-29 10:55:56 +0000 |
commit | f2e37a2394ae0cc88a8a580eea9860e144940a50 (patch) | |
tree | a3d995ef8e31c0b1f233f517c21ba9e069d9c363 | |
parent | 8366c4708abfc6ebc635c80bd233fb62ae9b90dc (diff) | |
download | FreeBSD-src-f2e37a2394ae0cc88a8a580eea9860e144940a50.zip FreeBSD-src-f2e37a2394ae0cc88a8a580eea9860e144940a50.tar.gz |
Remove __NETBSD_SYSCALLS.
-rw-r--r-- | lib/libutil/login_class.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libutil/login_class.c b/lib/libutil/login_class.c index 7b4fb00..3071605 100644 --- a/lib/libutil/login_class.c +++ b/lib/libutil/login_class.c @@ -315,9 +315,7 @@ setusercontext(login_cap_t *lc, const struct passwd *pwd, uid_t uid, unsigned in quad_t p; mode_t mymask; login_cap_t *llc = NULL; -#ifndef __NETBSD_SYSCALLS struct rtprio rtp; -#endif int error; if (lc == NULL) { @@ -337,23 +335,19 @@ setusercontext(login_cap_t *lc, const struct passwd *pwd, uid_t uid, unsigned in p = login_getcapnum(lc, "priority", LOGIN_DEFPRI, LOGIN_DEFPRI); if(p > PRIO_MAX) { -#ifndef __NETBSD_SYSCALLS rtp.type = RTP_PRIO_IDLE; rtp.prio = p - PRIO_MAX - 1; p = (rtp.prio > RTP_PRIO_MAX) ? 31 : p; if(rtprio(RTP_SET, 0, &rtp)) syslog(LOG_WARNING, "rtprio '%s' (%s): %m", pwd->pw_name, lc ? lc->lc_class : LOGIN_DEFCLASS); -#endif } else if(p < PRIO_MIN) { -#ifndef __NETBSD_SYSCALLS rtp.type = RTP_PRIO_REALTIME; rtp.prio = abs(p - PRIO_MIN + RTP_PRIO_MAX); p = (rtp.prio > RTP_PRIO_MAX) ? 1 : p; if(rtprio(RTP_SET, 0, &rtp)) syslog(LOG_WARNING, "rtprio '%s' (%s): %m", pwd->pw_name, lc ? lc->lc_class : LOGIN_DEFCLASS); -#endif } else { if (setpriority(PRIO_PROCESS, 0, (int)p) != 0) syslog(LOG_WARNING, "setpriority '%s' (%s): %m", |