summaryrefslogtreecommitdiffstats
path: root/sys/kern/makesyscalls.sh
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2009-06-17 18:46:14 +0000
committerjhb <jhb@FreeBSD.org>2009-06-17 18:46:14 +0000
commite4d63f780a7e469c79fafd7a384f514d10783fb4 (patch)
tree30351e9cef69ec2f756c1c56833cc1a85fb7a095 /sys/kern/makesyscalls.sh
parent4881bdf1efd469e320158bf288c5a3a5bb910af7 (diff)
downloadFreeBSD-src-e4d63f780a7e469c79fafd7a384f514d10783fb4.zip
FreeBSD-src-e4d63f780a7e469c79fafd7a384f514d10783fb4.tar.gz
Remove the now-unused NOIMPL flag. It serves no useful purpose given the
existing UNIMPL and NOSTD types.
Diffstat (limited to 'sys/kern/makesyscalls.sh')
-rw-r--r--sys/kern/makesyscalls.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh
index 153fdef..ec2edb7 100644
--- a/sys/kern/makesyscalls.sh
+++ b/sys/kern/makesyscalls.sh
@@ -326,7 +326,7 @@ s/\$//g
}
$3 == "STD" || $3 == "NODEF" || $3 == "NOARGS" || $3 == "NOPROTO" \
- || $3 == "NOIMPL" || $3 == "NOSTD" {
+ || $3 == "NOSTD" {
parseline()
printf("\t/* %s */\n\tcase %d: {\n", funcname, syscall) > systrace
printf("\t/* %s */\n\tcase %d:\n", funcname, syscall) > systracetmp
@@ -375,10 +375,7 @@ s/\$//g
}
printf("\t{ %s, (sy_call_t *)", argssize) > sysent
column = 8 + 2 + length(argssize) + 15
- if ($3 == "NOIMPL") {
- printf("%s },", "nosys, AUE_NULL, NULL, 0, 0, 0") > sysent
- column = column + length("nosys") + length("AUE_NULL") + 3
- } else if ($3 == "NOSTD") {
+ if ($3 == "NOSTD") {
printf("%s },", "lkmressys, AUE_NULL, NULL, 0, 0, 0") > sysent
column = column + length("lkmressys") + length("AUE_NULL") + 3
} else {
OpenPOWER on IntegriCloud