1
0
mirror of https://github.com/golang/go synced 2024-10-05 08:21:22 -06:00
go/src/lib/syscall/mkdarwin
Russ Cox 6201a963f1 move src/syscall to src/lib/syscall.
enforce rule: all kernel data structures and constants
	go in syscall module.
move things that should be in syscall out of net.
make net a single package.

R=r
OCL=15985
CL=15994
2008-09-26 14:11:26 -07:00

35 lines
629 B
Plaintext
Executable File

# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
my $command = "mkdarwin " . join(' ', @ARGV);
print <<EOF;
// Generated by mkdarwin; DO NOT EDIT.
// $command
package syscall
export const (
EOF
while(<>){
if(/^([0-9]+)\s+ALL\s+({ \S+\s+(\w+).*})/){
my $num = $1;
my $proto = $2;
my $name = "SYS_$3";
$name =~ y/a-z/A-Z/;
# There are multiple entries for nosys(), so comment them out.
if($name eq "SYS_NOSYS"){
$name = "// $name";
}
print " $name = $num; // $proto\n";
}
}
print <<EOF;
)
EOF