Compare commits
30 Commits
master
...
double_pre
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5da189ad36 | ||
|
|
de9ae5c603 | ||
|
|
9cf1805a1d | ||
|
|
4e2777e9fb | ||
|
|
6316b05ec3 | ||
|
|
738874016f | ||
|
|
6ce8e28a85 | ||
|
|
4783836659 | ||
|
|
249b5716bb | ||
|
|
1d1151403b | ||
|
|
54a771c6f0 | ||
|
|
eddfd51e51 | ||
|
|
d9033fbf2d | ||
|
|
28aae2c427 | ||
|
|
6d689c335c | ||
|
|
bad98ad239 | ||
|
|
c04495837f | ||
|
|
297b14aa0c | ||
|
|
190aa1e633 | ||
|
|
0220852a66 | ||
|
|
2afff6f8aa | ||
|
|
5b1496e5c3 | ||
|
|
bcff791a3c | ||
|
|
98d034efe1 | ||
|
|
0f6e23c2fe | ||
|
|
af3db0bcd2 | ||
|
|
b73ccfb9dc | ||
|
|
c31e4fa1e8 | ||
|
|
16e7b63b48 | ||
|
|
16214d4557 |
7
.gitignore
vendored
7
.gitignore
vendored
@@ -24,10 +24,7 @@
|
|||||||
*.dis
|
*.dis
|
||||||
*.0
|
*.0
|
||||||
*.img
|
*.img
|
||||||
|
sdcard.rd
|
||||||
|
.profile
|
||||||
|
|
||||||
Makefile.user
|
Makefile.user
|
||||||
|
|
||||||
#misc
|
|
||||||
*.log
|
|
||||||
*.txt
|
|
||||||
|
|
||||||
|
|||||||
179
Makefile
179
Makefile
@@ -8,13 +8,39 @@
|
|||||||
# The `make' will compile everything, including a kernel, utilities
|
# The `make' will compile everything, including a kernel, utilities
|
||||||
# and a root filesystem image.
|
# and a root filesystem image.
|
||||||
|
|
||||||
|
#
|
||||||
|
# Supported boards
|
||||||
|
#
|
||||||
|
MAX32 = sys/pic32/max32/MAX32
|
||||||
|
UBW32 = sys/pic32/ubw32/UBW32
|
||||||
|
UBW32UART = sys/pic32/ubw32-uart/UBW32-UART
|
||||||
|
UBW32UARTSDRAM = sys/pic32/ubw32-uart-sdram/UBW32-UART-SDRAM
|
||||||
|
MAXIMITE = sys/pic32/maximite/MAXIMITE
|
||||||
|
MAXCOLOR = sys/pic32/maximite-color/MAXCOLOR
|
||||||
|
EXPLORER16 = sys/pic32/explorer16/EXPLORER16
|
||||||
|
STARTERKIT = sys/pic32/starter-kit/STARTER-KIT
|
||||||
|
DUINOMITE = sys/pic32/duinomite/DUINOMITE
|
||||||
|
DUINOMITEUART = sys/pic32/duinomite-uart/DUINOMITE-UART
|
||||||
|
DUINOMITEE = sys/pic32/duinomite-e/DUINOMITE-E
|
||||||
|
DUINOMITEEUART = sys/pic32/duinomite-e-uart/DUINOMITE-E-UART
|
||||||
|
PINGUINO = sys/pic32/pinguino-micro/PINGUINO-MICRO
|
||||||
|
DIP = sys/pic32/dip/DIP
|
||||||
|
BAREMETAL = sys/pic32/baremetal/BAREMETAL
|
||||||
|
RETROONE = sys/pic32/retroone/RETROONE
|
||||||
|
FUBARINO = sys/pic32/fubarino/FUBARINO
|
||||||
|
FUBARINOBIG = sys/pic32/fubarino/FUBARINO-UART2CONS-UART1-SRAMC
|
||||||
|
MMBMX7 = sys/pic32/mmb-mx7/MMB-MX7
|
||||||
|
|
||||||
|
# Select target board
|
||||||
|
TARGET ?= $(MAX32)
|
||||||
|
|
||||||
# Filesystem and swap sizes.
|
# Filesystem and swap sizes.
|
||||||
FS_MBYTES = 100
|
FS_KBYTES = 102400
|
||||||
U_MBYTES = 100
|
U_KBYTES = 102400
|
||||||
SWAP_MBYTES = 2
|
SWAP_KBYTES = 2048
|
||||||
|
|
||||||
# Set this to the device name for your SD card. With this
|
# Set this to the device name for your SD card. With this
|
||||||
# enabled you can use "make installfs" to copy the sdcard.img
|
# enabled you can use "make installfs" to copy the filesys.img
|
||||||
# to the SD card.
|
# to the SD card.
|
||||||
|
|
||||||
#SDCARD = /dev/sdb
|
#SDCARD = /dev/sdb
|
||||||
@@ -29,29 +55,111 @@ FSUTIL = tools/fsutil/fsutil
|
|||||||
|
|
||||||
-include Makefile.user
|
-include Makefile.user
|
||||||
|
|
||||||
|
TARGETDIR = $(shell dirname $(TARGET))
|
||||||
|
TARGETNAME = $(shell basename $(TARGET))
|
||||||
TOPSRC = $(shell pwd)
|
TOPSRC = $(shell pwd)
|
||||||
CONFIG = $(TOPSRC)/tools/configsys/config
|
CONFIG = $(TOPSRC)/tools/configsys/config
|
||||||
|
#
|
||||||
|
# Filesystem contents.
|
||||||
|
#
|
||||||
|
BIN_FILES := $(wildcard bin/*)
|
||||||
|
SBIN_FILES := $(wildcard sbin/*)
|
||||||
|
GAMES_FILES := $(shell find games -type f ! -path '*/.*')
|
||||||
|
LIBEXEC_FILES := $(wildcard libexec/*)
|
||||||
|
LIB_FILES := lib/crt0.o lib/retroImage $(wildcard lib/*.a)
|
||||||
|
ETC_FILES = etc/rc etc/rc.local etc/ttys etc/gettytab etc/group \
|
||||||
|
etc/passwd etc/shadow etc/fstab etc/motd etc/shells \
|
||||||
|
etc/termcap etc/MAKEDEV etc/phones etc/remote
|
||||||
|
INC_FILES = $(wildcard include/*.h) \
|
||||||
|
$(wildcard include/sys/*.h) \
|
||||||
|
$(wildcard include/machine/*.h) \
|
||||||
|
$(wildcard include/smallc/*.h) \
|
||||||
|
$(wildcard include/smallc/sys/*.h) \
|
||||||
|
$(wildcard include/arpa/*.h)
|
||||||
|
SHARE_FILES = share/re.help share/example/Makefile \
|
||||||
|
share/example/ashello.S share/example/chello.c \
|
||||||
|
share/example/blkjack.bas share/example/hilow.bas \
|
||||||
|
share/example/stars.bas share/example/prime.scm \
|
||||||
|
share/example/fact.fth share/example/echo.S \
|
||||||
|
$(wildcard share/smallc/*)
|
||||||
|
MANFILES = share/man/ share/man/cat1/ share/man/cat2/ share/man/cat3/ \
|
||||||
|
share/man/cat4/ share/man/cat5/ share/man/cat6/ share/man/cat7/ \
|
||||||
|
share/man/cat8/ $(wildcard share/man/cat?/*)
|
||||||
|
ALLFILES = $(SBIN_FILES) $(ETC_FILES) $(BIN_FILES) $(LIB_FILES) $(LIBEXEC_FILES) \
|
||||||
|
$(INC_FILES) $(SHARE_FILES) $(GAMES_FILES) \
|
||||||
|
var/log/messages var/log/wtmp .profile
|
||||||
|
ALLDIRS = games/ sbin/ bin/ dev/ etc/ tmp/ lib/ libexec/ share/ include/ \
|
||||||
|
var/ u/ share/example/ share/misc/ share/smallc/ \
|
||||||
|
var/run/ var/log/ var/lock/ games/ games/lib/ include/sys/ \
|
||||||
|
include/machine/ include/arpa/ include/smallc/ \
|
||||||
|
include/smallc/sys/ share/misc/ share/smallc/ include/sys/ \
|
||||||
|
games/lib/
|
||||||
|
BDEVS = dev/rd0!b0:0 dev/rd0a!b0:1 dev/rd0b!b0:2 dev/rd0c!b0:3 dev/rd0d!b0:4
|
||||||
|
BDEVS += dev/rd1!b1:0 dev/rd1a!b1:1 dev/rd1b!b1:2 dev/rd1c!b1:3 dev/rd1d!b1:4
|
||||||
|
BDEVS += dev/rd2!b2:0 dev/rd2a!b2:1 dev/rd2b!b2:2 dev/rd2c!b2:3 dev/rd2d!b2:4
|
||||||
|
BDEVS += dev/rd3!b3:0 dev/rd3a!b3:1 dev/rd3b!b3:2 dev/rd3c!b3:3 dev/rd3d!b3:4
|
||||||
|
BDEVS += dev/swap!b4:64 dev/swap0!b4:0 dev/swap1!b4:1 dev/swap2!b4:2
|
||||||
|
|
||||||
all:
|
D_CONSOLE = dev/console!c0:0
|
||||||
$(MAKE) -C tools
|
D_MEM = dev/mem!c1:0 dev/kmem!c1:1 dev/null!c1:2 dev/zero!c1:3
|
||||||
$(MAKE) -C lib
|
D_TTY = dev/tty!c2:0
|
||||||
$(MAKE) -C src install
|
D_FD = dev/stdin!c3:0 dev/stdout!c3:1 dev/stderr!c3:2
|
||||||
$(MAKE) kernel
|
D_TEMP = dev/temp0!c4:0 dev/temp1!c4:1 dev/temp2!c4:2
|
||||||
|
|
||||||
|
U_DIRS = $(addsuffix /,$(shell find u -type d ! -path '*/.svn*'))
|
||||||
|
U_FILES = $(shell find u -type f ! -path '*/.svn/*')
|
||||||
|
#U_ALL = $(patsubst u/%,%,$(U_DIRS) $(U_FILES))
|
||||||
|
|
||||||
|
CDEVS = $(D_CONSOLE) $(D_MEM) $(D_TTY) $(D_FD) $(D_TEMP)
|
||||||
|
|
||||||
|
all: tools build kernel
|
||||||
$(MAKE) fs
|
$(MAKE) fs
|
||||||
|
|
||||||
kernel: $(CONFIG)
|
fs: sdcard.rd
|
||||||
$(MAKE) -C sys/pic32 all
|
|
||||||
|
|
||||||
fs: sdcard.img
|
.PHONY: tools
|
||||||
|
tools:
|
||||||
|
$(MAKE) -C tools
|
||||||
|
|
||||||
.PHONY: sdcard.img
|
kernel: $(TARGETDIR)/Makefile
|
||||||
sdcard.img: $(FSUTIL) rootfs.manifest userfs.manifest
|
$(MAKE) -C $(TARGETDIR)
|
||||||
|
|
||||||
|
$(TARGETDIR)/Makefile: $(CONFIG) $(TARGETDIR)/$(TARGETNAME)
|
||||||
|
cd $(TARGETDIR) && ../../../tools/configsys/config $(TARGETNAME)
|
||||||
|
|
||||||
|
.PHONY: lib
|
||||||
|
lib:
|
||||||
|
$(MAKE) -C lib
|
||||||
|
|
||||||
|
build: tools lib
|
||||||
|
$(MAKE) -C src install
|
||||||
|
|
||||||
|
filesys.img: $(FSUTIL) $(ALLFILES)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
$(FSUTIL) --repartition=fs=$(FS_MBYTES)M:swap=$(SWAP_MBYTES)M:fs=$(U_MBYTES)M $@
|
$(FSUTIL) -n$(FS_KBYTES) $@
|
||||||
$(FSUTIL) --new --partition=1 --manifest=rootfs.manifest $@ .
|
$(FSUTIL) -a $@ $(ALLDIRS)
|
||||||
# In case you need a separate /u partition,
|
$(FSUTIL) -a $@ $(CDEVS)
|
||||||
# uncomment the following line.
|
$(FSUTIL) -a $@ $(BDEVS)
|
||||||
# $(FSUTIL) --new --partition=3 --manifest=userfs.manifest $@ u
|
$(FSUTIL) -a $@ $(ALLFILES)
|
||||||
|
$(FSUTIL) -a $@ $(MANFILES)
|
||||||
|
|
||||||
|
swap.img:
|
||||||
|
dd if=/dev/zero of=$@ bs=1k count=$(SWAP_KBYTES)
|
||||||
|
|
||||||
|
user.img: $(FSUTIL)
|
||||||
|
ifneq ($(U_KBYTES), 0)
|
||||||
|
rm -f $@
|
||||||
|
$(FSUTIL) -n$(U_KBYTES) $@
|
||||||
|
(cd u; find . -type d -exec ../$(FSUTIL) -a ../$@ '{}/' \;)
|
||||||
|
(cd u; find . -type f -exec ../$(FSUTIL) -a ../$@ '{}' \+)
|
||||||
|
endif
|
||||||
|
|
||||||
|
sdcard.rd: filesys.img swap.img user.img
|
||||||
|
ifneq ($(U_KBYTES), 0)
|
||||||
|
tools/mkrd/mkrd -out $@ -boot filesys.img -swap swap.img -fs user.img
|
||||||
|
else
|
||||||
|
tools/mkrd/mkrd -out $@ -boot filesys.img -swap swap.img
|
||||||
|
endif
|
||||||
|
|
||||||
$(FSUTIL):
|
$(FSUTIL):
|
||||||
cd tools/fsutil; $(MAKE)
|
cd tools/fsutil; $(MAKE)
|
||||||
@@ -65,27 +173,32 @@ clean:
|
|||||||
|
|
||||||
cleanall: clean
|
cleanall: clean
|
||||||
$(MAKE) -C lib clean
|
$(MAKE) -C lib clean
|
||||||
rm -f sys/pic32/*/unix.hex bin/* sbin/* libexec/*
|
rm -f sys/pic32/*/unix.hex bin/* sbin/* games/[a-k]* games/[m-z]* libexec/* share/man/cat*/*
|
||||||
rm -f games/[a-k]* games/[m-z]* share/man/cat*/*
|
rm -f games/lib/adventure.dat
|
||||||
rm -f games/lib/adventure.dat games/lib/cfscores
|
rm -f games/lib/cfscores
|
||||||
rm -f share/re.help share/emg.keys share/misc/more.help
|
rm -f share/re.help
|
||||||
|
rm -f share/misc/more.help
|
||||||
rm -f etc/termcap etc/remote etc/phones
|
rm -f etc/termcap etc/remote etc/phones
|
||||||
|
rm -rf share/unixbench
|
||||||
|
rm -f games/lib/adventure.dat games/lib/cfscores share/re.help share/misc/more.help etc/termcap
|
||||||
rm -f tools/configsys/.depend
|
rm -f tools/configsys/.depend
|
||||||
rm -f var/log/aculog sdcard.img
|
rm -f var/log/aculog
|
||||||
rm -rf var/lock share/unixbench
|
rm -rf var/lock
|
||||||
|
|
||||||
installfs:
|
installfs: filesys.img
|
||||||
ifdef SDCARD
|
ifdef SDCARD
|
||||||
@[ -f sdcard.img ] || $(MAKE) sdcard.img
|
sudo dd bs=32k if=sdcard.rd of=$(SDCARD)
|
||||||
sudo dd bs=32k if=sdcard.img of=$(SDCARD)
|
|
||||||
else
|
else
|
||||||
@echo "Error: No SDCARD defined."
|
@echo "Error: No SDCARD defined."
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# TODO: make it relative to Target
|
# TODO: make it relative to Target
|
||||||
installflash:
|
installflash:
|
||||||
sudo pic32prog sys/pic32/fubarino/unix.hex
|
sudo pic32prog sys/pic32/fubarino/unix.hex
|
||||||
|
|
||||||
# TODO: make it relative to Target
|
# TODO: make it relative to Target
|
||||||
installboot:
|
installboot:
|
||||||
sudo pic32prog sys/pic32/fubarino/bootloader.hex
|
sudo pic32prog sys/pic32/fubarino/bootloader.hex
|
||||||
|
|
||||||
|
.profile: etc/root/dot.profile
|
||||||
|
cp etc/root/dot.profile .profile
|
||||||
|
|||||||
71
README.md
71
README.md
@@ -15,35 +15,48 @@
|
|||||||
|
|
||||||
## Supported hardware
|
## Supported hardware
|
||||||
|
|
||||||
* Fubarino SD board.
|
* chipKIT Max32 board.
|
||||||
* Olimex Duinomite, Duinomite-Mini, Duinomite-Mega and Duinomite-eMega boards.
|
* Sparkfun UBW32 board.
|
||||||
* Olimex Pinguino-Micro board with PIC32MX795F512H microcontroller.
|
|
||||||
* Maximite and Colour Maximite computers.
|
* Maximite and Colour Maximite computers.
|
||||||
* Majenko SDXL board.
|
|
||||||
* 4D Systems Picadillo-35T board.
|
|
||||||
* MikroElektronika MultiMedia Board for PIC32MX7.
|
|
||||||
* chipKIT Max32 board with SD card shield.
|
|
||||||
* chipKIT WF32 board with 2.4" LCD TFT display shield.
|
|
||||||
* Sparkfun UBW32 board with SD card slot.
|
|
||||||
* Microchip Explorer 16 board, with PIC32 CAN-USB plug-in module and SD & MMC pictail.
|
* Microchip Explorer 16 board, with PIC32 CAN-USB plug-in module and SD & MMC pictail.
|
||||||
* Microchip PIC32 USB or Ethernet Starter Kit, with I/O Expansion board and SD & MMC pictail.
|
* Microchip PIC32 USB or Ethernet Starter Kit, with I/O Expansion board and SD & MMC pictail.
|
||||||
|
* Olimex Duinomite, Duinomite-Mini and Duinomite-Mega boards.
|
||||||
|
* Olimex Pinguino-Micro board with PIC32MX795F512H microcontroller.
|
||||||
|
* eflightworks DIP board.
|
||||||
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
To compile everything from sources, you'll need some packages installed, namely:
|
By default, the system is configured for the Max32 board.
|
||||||
Berkeley YACC, GNU bison, flex, groff, ELF library and FUSE library.
|
To select another target board, edit a top-level user-specific Makefile called "Makefile.user"
|
||||||
Under Ubuntu, for example, you can do it by command:
|
and set a TARGET value:
|
||||||
|
|
||||||
```shell
|
```Makefile
|
||||||
$ sudo apt-get install bison byacc flex groff-base libelf-dev
|
TARGET = $(UBW32) # for the UBW32 board with USB console
|
||||||
|
TARGET = $(UBW32UART) # for the UBW32 board with UART console
|
||||||
|
TARGET = $(UBW32UARTSDRAM) # for the UBW32 boars with UART console and 8MB SRAM ramdisk
|
||||||
|
TARGET = $(MAXIMITE) # for the Maximite board
|
||||||
|
TARGET = $(MAXCOLOR) # for the Colour Maximite board
|
||||||
|
TARGET = $(EXPLORER16) # for the Explorer 16 board
|
||||||
|
TARGET = $(STARTERKIT) # for the PIC32 USB or Ethernet Starter Kit
|
||||||
|
TARGET = $(MAX32) # default
|
||||||
|
TARGET = $(DUINOMITE) # for the Duinomite board with USB console
|
||||||
|
TARGET = $(DUINOMITEUART) # for the Duinomite board with UART console
|
||||||
|
TARGET = $(DUINOMITEE) # for the Duinomite E board with USB console
|
||||||
|
TARGET = $(DUINOMITEEUART) # for the Duinomite E board with UART console
|
||||||
|
TARGET = $(PINGUINO) # for the Pinguino-Micro board
|
||||||
|
TARGET = $(DIP) # for the DIP board
|
||||||
|
TARGET = $(BAREMETAL) # Bare PIC32 chip on a breakout board
|
||||||
|
TARGET = $(FUBARINO) # Fubarino SD board
|
||||||
|
TARGET = $(FUBARINOBIG) # Fubarino SD board with 8MB SRAM RAMDISK
|
||||||
|
TARGET = $(MMBMX7) # MMB MX7 board
|
||||||
```
|
```
|
||||||
|
|
||||||
You can change a desired filesystem size and swap area size, as required.
|
You can also change a desired filesystem size and swap area size,
|
||||||
Default is:
|
as required. Default is:
|
||||||
```Makefile
|
```Makefile
|
||||||
FS_MBYTES = 100
|
FS_KBYTES = 16384
|
||||||
SWAP_MBYTES = 2
|
SWAP_KBYTES = 2048
|
||||||
```
|
```
|
||||||
To compile the kernel and build a filesystem image, run:
|
To compile the kernel and build a filesystem image, run:
|
||||||
|
|
||||||
@@ -51,7 +64,7 @@ To compile the kernel and build a filesystem image, run:
|
|||||||
$ make
|
$ make
|
||||||
```
|
```
|
||||||
|
|
||||||
A resulting root filesystem image is in file `sdcard.img`.
|
A resulting root filesystem image is in file `sdcard.rd`.
|
||||||
A kernel is in file `unix.hex` in your target board subdirectory.
|
A kernel is in file `unix.hex` in your target board subdirectory.
|
||||||
|
|
||||||
|
|
||||||
@@ -62,7 +75,7 @@ Win32DiskImager utility (https://launchpad.net/win32-image-writer/+download).
|
|||||||
On Linux, run:
|
On Linux, run:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ sudo dd if=sdcard.img of=/dev/XYZ
|
$ sudo dd if=sdcard.rd of=/dev/XYZ
|
||||||
```
|
```
|
||||||
|
|
||||||
Here `XYZ` is a device name of SD card, as recognized by Linux (sdb in my case).
|
Here `XYZ` is a device name of SD card, as recognized by Linux (sdb in my case).
|
||||||
@@ -74,11 +87,11 @@ Kernel image should be written to PIC32 flash memory. The procedure depends
|
|||||||
on a board used.
|
on a board used.
|
||||||
|
|
||||||
#### Max32 board:
|
#### Max32 board:
|
||||||
Use a pic32prog utility (http://code.google.com/p/pic32prog/)
|
|
||||||
and a USB cable to install a kernel:
|
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ pic32prog -d /dev/ttyUSB0 sys/pic32/max32/unix.hex
|
$ cd sys/pic32/ubw32
|
||||||
|
$ AVRTOOLS=/Applications/Mpide.app/Contents/Resources/Java/hardware/tools
|
||||||
|
$AVRTOOLS/bin/avrdude -C$AVRTOOLS/etc/avrdude.conf -c stk500v2 -p pic32 \
|
||||||
|
-P /dev/tty.usbserial-* -b 115200 -v -U flash:w:unix.hex:i
|
||||||
```
|
```
|
||||||
|
|
||||||
Here you need to change AVRTOOLS path and tty name according to your system.
|
Here you need to change AVRTOOLS path and tty name according to your system.
|
||||||
@@ -140,3 +153,13 @@ $ ./pic32
|
|||||||
```
|
```
|
||||||
|
|
||||||
Configuration of simulated board is stored in file `pic32_max32.conf`.
|
Configuration of simulated board is stored in file `pic32_max32.conf`.
|
||||||
|
|
||||||
|
## Build packages
|
||||||
|
|
||||||
|
|
||||||
|
For building under Ubuntu you need the following packages installed:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ sudo apt-get install byacc libelf-dev
|
||||||
|
```
|
||||||
|
|
||||||
|
|||||||
2
cross.mk
Normal file → Executable file
2
cross.mk
Normal file → Executable file
@@ -1,7 +1,7 @@
|
|||||||
DESTDIR = /usr/local/retrobsd
|
DESTDIR = /usr/local/retrobsd
|
||||||
MACHINE = mips
|
MACHINE = mips
|
||||||
|
|
||||||
CC = gcc -m32
|
CC = gcc
|
||||||
|
|
||||||
AS = $(CC) -x assembler-with-cpp
|
AS = $(CC) -x assembler-with-cpp
|
||||||
LD = ld
|
LD = ld
|
||||||
|
|||||||
2
etc/.gitignore
vendored
2
etc/.gitignore
vendored
@@ -1,5 +1,3 @@
|
|||||||
localtime
|
|
||||||
phones
|
phones
|
||||||
remote
|
remote
|
||||||
termcap
|
termcap
|
||||||
termcap.full
|
|
||||||
|
|||||||
42
etc/MAKEDEV
42
etc/MAKEDEV
@@ -4,14 +4,46 @@
|
|||||||
# All rights reserved. The Berkeley software License Agreement
|
# All rights reserved. The Berkeley software License Agreement
|
||||||
# specifies the terms and conditions for redistribution.
|
# specifies the terms and conditions for redistribution.
|
||||||
#
|
#
|
||||||
|
# @(#)MAKEDEV 4.27.6 (2.11BSD) 1999/2/19
|
||||||
|
#
|
||||||
# Device "make" file. Valid arguments:
|
# Device "make" file. Valid arguments:
|
||||||
# std standard devices
|
# std standard devices
|
||||||
# local configuration specific devices
|
# local configuration specific devices
|
||||||
# fd file descriptor driver
|
# fd file descriptor driver
|
||||||
|
# Tapes:
|
||||||
|
# ht* unibus tu77 & te16
|
||||||
|
# tm* unibus tm11 & te10 emulations (e.g. Emulex tc-11)
|
||||||
|
# ts* unibus ts11
|
||||||
|
# tu* tmscp (tk50/tu81)
|
||||||
# Disks:
|
# Disks:
|
||||||
# sd* flash cards SecureDigital
|
# br* unibus Eaton br1538 or br1711
|
||||||
|
# hk* unibus rk06 and rk07
|
||||||
|
# ra* unibus uda50 w/ ra??
|
||||||
|
# rk* unibus rk05
|
||||||
|
# rl* unibus rl01/rl02
|
||||||
|
# rx* unibus rx02
|
||||||
|
# si* unibus cdc 9766 w/ si 9500
|
||||||
|
# xp* unibus rm02/03/05, rp04/05/06, diva, eagle, cdc9766, fuji 160.
|
||||||
|
# Terminal multiplexors:
|
||||||
|
# dl* dl-11 units other than the console
|
||||||
|
# dz* unibus dz11 and dz32
|
||||||
|
# dh* unibus dh11 and emulations (e.g. Able dmax, Emulex cs-11)
|
||||||
|
# dmf* unibus dmf32
|
||||||
|
# dhu* unibus dhu11
|
||||||
|
# dmz* unibus dmz32
|
||||||
|
# dhv* qbus dhv11
|
||||||
# Pseudo terminals:
|
# Pseudo terminals:
|
||||||
# pty* set of 16 master and slave pseudo terminals
|
# pty* set of 16 master and slave pseudo terminals
|
||||||
|
# Printers:
|
||||||
|
# lp* unibus lp11 parallel interface
|
||||||
|
# va* unibus varian parallel interface
|
||||||
|
# vp* unibus versatec parallel interface
|
||||||
|
# Call units:
|
||||||
|
# Special purpose devices:
|
||||||
|
# dr* unibus dr11
|
||||||
|
# ram* memory disk
|
||||||
|
# dn* dn11 dialer
|
||||||
|
# ingreslock Ingres lock driver.
|
||||||
|
|
||||||
PATH=/etc:/sbin:/usr/sbin:/bin:/usr/bin
|
PATH=/etc:/sbin:/usr/sbin:/bin:/usr/bin
|
||||||
umask 77
|
umask 77
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ DESTDIR = /foobar
|
|||||||
OWN = root
|
OWN = root
|
||||||
GRP = wheel
|
GRP = wheel
|
||||||
|
|
||||||
|
SUBDIR = root
|
||||||
FILES = crontab fstab gettytab group motd passwd \
|
FILES = crontab fstab gettytab group motd passwd \
|
||||||
rc rc.local shells syslog.conf ttys
|
rc rc.local shells syslog.conf ttys
|
||||||
|
|
||||||
@@ -18,6 +19,8 @@ all install depend lint tags:
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *~
|
rm -f *~
|
||||||
|
-for i in ${SUBDIR}; do \
|
||||||
|
(cd $$i; make DESTDIR=${DESTDIR} $@); done
|
||||||
|
|
||||||
distribution:
|
distribution:
|
||||||
-@mkdir -p ${DESTDIR}/dev
|
-@mkdir -p ${DESTDIR}/dev
|
||||||
@@ -72,3 +75,5 @@ distribution:
|
|||||||
${DESTDIR}/usr/adm/savacct
|
${DESTDIR}/usr/adm/savacct
|
||||||
install -c -o uucp -g daemon -m 600 /dev/null \
|
install -c -o uucp -g daemon -m 600 /dev/null \
|
||||||
${DESTDIR}/usr/adm/aculog
|
${DESTDIR}/usr/adm/aculog
|
||||||
|
-for i in ${SUBDIR}; do \
|
||||||
|
(cd $$i; make DESTDIR=${DESTDIR} distribution); done
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
/dev/sd0a / ufs rw,async 1 1
|
/dev/rd0a / ufs rw,async 1 1
|
||||||
#/dev/sd0c /u ufs rw,async 1 2
|
#/dev/rd0c /u ufs rw,async 1 2
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
# entries, and in cases where getty is called with no table name
|
# entries, and in cases where getty is called with no table name
|
||||||
#
|
#
|
||||||
default:\
|
default:\
|
||||||
:ap:im=\r\n\r\nRetroBSD (%h) (%t)\r\n\r\r\n\r:sp#1200:
|
:ap:im=\r\n\r\n2.11 BSD UNIX (%h) (%t)\r\n\r\r\n\r:sp#1200:
|
||||||
|
|
||||||
#
|
#
|
||||||
# Fixed speed entries
|
# Fixed speed entries
|
||||||
|
|||||||
11
etc/passwd
11
etc/passwd
@@ -1,7 +1,8 @@
|
|||||||
root:5:0:1:The Man:/root:/bin/sh
|
root:5:0:1:The Man:/:/bin/sh
|
||||||
daemon:*:1:1:The devil himself:/root:/bin/sh
|
daemon:*:1:1:The devil himself:/:/bin/sh
|
||||||
sys:*:4:2:Operating System:/tmp:nologin
|
sys:*:4:2:Operating System:/tmp:nologin
|
||||||
operator:*:2:5:System &:/u/operator:/bin/sh
|
operator:*:2:5:System &:/usr/guest/operator:/bin/csh
|
||||||
bin:*:3:20:Binaries Commands and Source:/root:/bin/sh
|
bin:*:3:20:Binaries Commands and Source:/:/bin/csh
|
||||||
nobody:*:32767:31:Nobody:/nonexistent:/bin/sh
|
nobody:*:32767:31:Nobody:/nonexistent:/bin/sh
|
||||||
uucp:*:66:1:UNIX-to-UNIX Copy:/spool/uucppublic:/sbin/uucico
|
uucp:*:66:1:UNIX-to-UNIX Copy:/usr/spool/uucppublic:/usr/sbin/uucico
|
||||||
|
ingres:*:39:74:INGRES Owner:/usr/ingres:/bin/csh
|
||||||
|
|||||||
2
etc/rc
2
etc/rc
@@ -3,6 +3,8 @@ HOME=/; export HOME
|
|||||||
PATH=/bin:/sbin; export PATH
|
PATH=/bin:/sbin; export PATH
|
||||||
exec >/dev/console 2>&1
|
exec >/dev/console 2>&1
|
||||||
|
|
||||||
|
/sbin/devupdate
|
||||||
|
|
||||||
if test "$1" != "autoboot"; then
|
if test "$1" != "autoboot"; then
|
||||||
#
|
#
|
||||||
# Switch from single-user to multi-user mode.
|
# Switch from single-user to multi-user mode.
|
||||||
|
|||||||
18
etc/root/Makefile
Normal file
18
etc/root/Makefile
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
#
|
||||||
|
# DESTDIR is defined here to be something which does *NOT* exist - it must be
|
||||||
|
# specified on the command line when doing a "make DESTDIR=/mnt distribution".
|
||||||
|
# This is aimed at avoiding overwriting the system disk's /etc files.
|
||||||
|
|
||||||
|
DESTDIR = /foobar
|
||||||
|
OWN = root
|
||||||
|
GRP = wheel
|
||||||
|
|
||||||
|
all install depend lint tags:
|
||||||
|
|
||||||
|
distribution:
|
||||||
|
install -c -o ${OWN} -g ${GRP} -m 644 dot.cshrc ${DESTDIR}/.cshrc
|
||||||
|
install -c -o ${OWN} -g ${GRP} -m 644 dot.login ${DESTDIR}/.login
|
||||||
|
install -c -o ${OWN} -g ${GRP} -m 644 dot.profile ${DESTDIR}/.profile
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *~
|
||||||
14
etc/root/dot.cshrc
Normal file
14
etc/root/dot.cshrc
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
set history=30
|
||||||
|
set path=(/bin /sbin /etc /usr/sbin /usr/ucb /usr/bin /usr/new /usr/local)
|
||||||
|
if ($?prompt) then
|
||||||
|
set prompt="\!% "
|
||||||
|
endif
|
||||||
|
|
||||||
|
set filec
|
||||||
|
set mail=( 0 /usr/spool/mail/$USER )
|
||||||
|
set cdpath=( ~ /usr/spool/mqueue)
|
||||||
|
set prompt="\!% root--> "
|
||||||
|
alias mail /usr/ucb/Mail
|
||||||
|
alias pwd 'echo $cwd'
|
||||||
|
alias h history
|
||||||
|
alias q5 'tail -5 /usr/spool/mqueue/syslog'
|
||||||
14
etc/root/dot.login
Normal file
14
etc/root/dot.login
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
unset noglob
|
||||||
|
set path=(/bin /etc /sbin /usr/sbin /usr/ucb /usr/bin /usr/local /usr/new)
|
||||||
|
umask 26
|
||||||
|
stty dec erase ^H kill ^U eof ^D
|
||||||
|
set prompt="[\!] root--> "
|
||||||
|
|
||||||
|
if ( "$TERM" == dialup || "$TERM" == network) then
|
||||||
|
setenv TERM vt100
|
||||||
|
echo -n "Terminal ($TERM)? "
|
||||||
|
set argv = "$<"
|
||||||
|
if ( "$argv" != '' ) setenv TERM "$argv"
|
||||||
|
endif
|
||||||
|
|
||||||
|
biff y
|
||||||
8
etc/root/dot.profile
Normal file
8
etc/root/dot.profile
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
echo 'erase, kill ^U, intr ^C'
|
||||||
|
stty dec
|
||||||
|
stty erase
|
||||||
|
PATH=/bin:/sbin:/usr/sbin:/etc:/usr/ucb:/usr/bin:/usr/new
|
||||||
|
export PATH
|
||||||
|
HOME=/
|
||||||
|
export HOME
|
||||||
|
export TERM
|
||||||
11
etc/shadow
11
etc/shadow
@@ -1,7 +1,8 @@
|
|||||||
root:ro46DZg1ViGBs:0:1:The Man:/root:/bin/sh
|
root:ro46DZg1ViGBs:0:1:The Man:/:/bin/sh
|
||||||
daemon:*:1:1:The devil himself:/root:/bin/sh
|
daemon:*:1:1:The devil himself:/:/bin/sh
|
||||||
sys:*:4:2:Operating System:/tmp:nologin
|
sys:*:4:2:Operating System:/tmp:nologin
|
||||||
operator:*:2:5:System &:/u/operator:/bin/sh
|
operator:*:2:5:System &:/usr/guest/operator:/bin/csh
|
||||||
bin:*:3:20:Binaries Commands and Source:/root:/bin/sh
|
bin:*:3:20:Binaries Commands and Source:/:/bin/csh
|
||||||
nobody:*:32767:31:Nobody:/nonexistent:/bin/sh
|
nobody:*:32767:31:Nobody:/nonexistent:/bin/sh
|
||||||
uucp:*:66:1:UNIX-to-UNIX Copy:/spool/uucppublic:/sbin/uucico
|
uucp:*:66:1:UNIX-to-UNIX Copy:/usr/spool/uucppublic:/usr/sbin/uucico
|
||||||
|
ingres:*:39:74:INGRES Owner:/usr/ingres:/bin/csh
|
||||||
|
|||||||
16
etc/ttys
16
etc/ttys
@@ -1,16 +1,16 @@
|
|||||||
#
|
#
|
||||||
# name getty type status comments
|
# name getty type status comments
|
||||||
#
|
#
|
||||||
console "/libexec/getty std.default" xterm on secure #special
|
console "/libexec/getty std.default" vt100 on secure #special
|
||||||
|
|
||||||
# Enable some of these for additional logins. Do NOT enable the same one as the
|
# Enable some of these for additional logins. Do NOT enable the same one as the
|
||||||
# console port, or strange things will happen. You can turn off the console port
|
# console port, or strange things will happen. You can turn off the console port
|
||||||
# if you would rather use the getty on the real tty - it's up to you.
|
# if you would rather use the getty on the real tty - it's up to you.
|
||||||
|
|
||||||
tty0 "/libexec/getty std.default" xterm off secure
|
tty0 "/libexec/getty std.default" vt100 off secure
|
||||||
tty1 "/libexec/getty std.default" xterm off secure
|
tty1 "/libexec/getty std.default" vt100 off secure
|
||||||
tty2 "/libexec/getty std.default" xterm off secure
|
tty2 "/libexec/getty std.default" vt100 off secure
|
||||||
tty3 "/libexec/getty std.default" xterm off secure
|
tty3 "/libexec/getty std.default" vt100 off secure
|
||||||
tty4 "/libexec/getty std.default" xterm off secure
|
tty4 "/libexec/getty std.default" vt100 off secure
|
||||||
tty5 "/libexec/getty std.default" xterm off secure
|
tty5 "/libexec/getty std.default" vt100 off secure
|
||||||
ttyUSB0 "/libexec/getty std.default" xterm off secure
|
ttyUSB0 "/libexec/getty std.default" vt100 off secure
|
||||||
|
|||||||
1
include/.gitignore
vendored
1
include/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
readline
|
|
||||||
@@ -12,8 +12,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -30,12 +30,34 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
#ifndef _AOUT_H_
|
#ifndef _AOUT_H_
|
||||||
#define _AOUT_H_
|
#define _AOUT_H_
|
||||||
|
|
||||||
#include <sys/exec_aout.h>
|
#include <sys/exec.h>
|
||||||
|
|
||||||
#define _AOUT_INCLUDE_
|
/* Valid magic number check. */
|
||||||
|
#define N_BADMAG(x) (((x).a_magic) != RMAGIC && \
|
||||||
|
((x).a_magic) != OMAGIC && \
|
||||||
|
((x).a_magic) != NMAGIC)
|
||||||
|
|
||||||
|
/* Text segment offset. */
|
||||||
|
#define N_TXTOFF(x) sizeof(struct exec)
|
||||||
|
|
||||||
|
/* Data segment offset. */
|
||||||
|
#define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text)
|
||||||
|
|
||||||
|
/* Text relocation table offset. */
|
||||||
|
#define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data)
|
||||||
|
|
||||||
|
/* Data relocation table offset. */
|
||||||
|
#define N_DRELOFF(x) (N_TRELOFF(x) + (x).a_reltext)
|
||||||
|
|
||||||
|
/* Symbol table offset. */
|
||||||
|
#define N_SYMOFF(x) ((x).a_magic == RMAGIC ? \
|
||||||
|
N_DRELOFF(x) + (x).a_reldata : \
|
||||||
|
N_DATOFF(x) + (x).a_data)
|
||||||
|
|
||||||
|
#define _AOUT_INCLUDE_
|
||||||
#include <nlist.h>
|
#include <nlist.h>
|
||||||
|
|
||||||
/* Relocations */
|
/* Relocations */
|
||||||
@@ -65,4 +87,4 @@ struct reloc {
|
|||||||
* for RIGH16 and RIGH16S */
|
* for RIGH16 and RIGH16S */
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* !_AOUT_H_ */
|
#endif /* !_AOUT_H_ */
|
||||||
|
|||||||
30
include/ar.h
30
include/ar.h
@@ -15,8 +15,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -35,24 +35,24 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _AR_H_
|
#ifndef _AR_H_
|
||||||
#define _AR_H_
|
#define _AR_H_
|
||||||
|
|
||||||
#define ARMAG "!<arch>\n" /* ar "magic number" */
|
#define ARMAG "!<arch>\n" /* ar "magic number" */
|
||||||
#define SARMAG 8 /* strlen(ARMAG); */
|
#define SARMAG 8 /* strlen(ARMAG); */
|
||||||
|
|
||||||
#define AR_EFMT1 "#1/" /* extended format #1 */
|
#define AR_EFMT1 "#1/" /* extended format #1 */
|
||||||
|
|
||||||
struct ar_hdr {
|
struct ar_hdr {
|
||||||
char ar_name[16]; /* name */
|
char ar_name[16]; /* name */
|
||||||
char ar_date[12]; /* modification time */
|
char ar_date[12]; /* modification time */
|
||||||
char ar_uid[6]; /* user id */
|
char ar_uid[6]; /* user id */
|
||||||
char ar_gid[6]; /* group id */
|
char ar_gid[6]; /* group id */
|
||||||
char ar_mode[8]; /* octal file permissions */
|
char ar_mode[8]; /* octal file permissions */
|
||||||
char ar_size[10]; /* size in bytes */
|
char ar_size[10]; /* size in bytes */
|
||||||
#define ARFMAG "`\n"
|
#define ARFMAG "`\n"
|
||||||
char ar_fmag[2]; /* consistency check */
|
char ar_fmag[2]; /* consistency check */
|
||||||
};
|
};
|
||||||
|
|
||||||
#define ARHDRSZ 60
|
#define ARHDRSZ 60
|
||||||
|
|
||||||
#endif /* !_AR_H_ */
|
#endif /* !_AR_H_ */
|
||||||
|
|||||||
@@ -19,11 +19,11 @@
|
|||||||
* External definitions for
|
* External definitions for
|
||||||
* functions in inet(3N)
|
* functions in inet(3N)
|
||||||
*/
|
*/
|
||||||
struct in_addr;
|
struct in_addr;
|
||||||
|
|
||||||
unsigned long inet_addr (char *);
|
unsigned long inet_addr (char *);
|
||||||
char *inet_ntoa (struct in_addr);
|
char *inet_ntoa (struct in_addr);
|
||||||
struct in_addr inet_makeaddr (long, long);
|
struct in_addr inet_makeaddr (long, long);
|
||||||
unsigned long inet_network (char *);
|
unsigned long inet_network (char *);
|
||||||
unsigned long inet_netof (struct in_addr);
|
unsigned long inet_netof (struct in_addr);
|
||||||
unsigned long inet_lnaof (struct in_addr);
|
unsigned long inet_lnaof (struct in_addr);
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
|
/* assert.h 4.2 85/01/21 */
|
||||||
|
|
||||||
# ifndef NDEBUG
|
# ifndef NDEBUG
|
||||||
# define _assert(ex) {if (!(ex)){fprintf(stderr,"Assertion failed: file \"%s\", line %d\n", __FILE__, __LINE__);exit(1);}}
|
# define _assert(ex) {if (!(ex)){fprintf(stderr,"Assertion failed: file \"%s\", line %d\n", __FILE__, __LINE__);exit(1);}}
|
||||||
# define assert(ex) _assert(ex)
|
# define assert(ex) _assert(ex)
|
||||||
# else
|
# else
|
||||||
# define _assert(ex)
|
# define _assert(ex)
|
||||||
# define assert(ex)
|
# define assert(ex)
|
||||||
|
|||||||
@@ -1,26 +1,28 @@
|
|||||||
#define _U 01
|
/* ctype.h 4.2 85/09/04 */
|
||||||
#define _L 02
|
|
||||||
#define _N 04
|
|
||||||
#define _S 010
|
|
||||||
#define _P 020
|
|
||||||
#define _C 040
|
|
||||||
#define _X 0100
|
|
||||||
#define _B 0200
|
|
||||||
|
|
||||||
extern char _ctype_[];
|
#define _U 01
|
||||||
|
#define _L 02
|
||||||
|
#define _N 04
|
||||||
|
#define _S 010
|
||||||
|
#define _P 020
|
||||||
|
#define _C 040
|
||||||
|
#define _X 0100
|
||||||
|
#define _B 0200
|
||||||
|
|
||||||
#define isalpha(c) ((_ctype_+1)[(int)(c)]&(_U|_L))
|
extern char _ctype_[];
|
||||||
#define isupper(c) ((_ctype_+1)[(int)(c)]&_U)
|
|
||||||
#define islower(c) ((_ctype_+1)[(int)(c)]&_L)
|
#define isalpha(c) ((_ctype_+1)[(int)(c)]&(_U|_L))
|
||||||
#define isdigit(c) ((_ctype_+1)[(int)(c)]&_N)
|
#define isupper(c) ((_ctype_+1)[(int)(c)]&_U)
|
||||||
#define isxdigit(c) ((_ctype_+1)[(int)(c)]&(_N|_X))
|
#define islower(c) ((_ctype_+1)[(int)(c)]&_L)
|
||||||
#define isspace(c) ((_ctype_+1)[(int)(c)]&_S)
|
#define isdigit(c) ((_ctype_+1)[(int)(c)]&_N)
|
||||||
#define ispunct(c) ((_ctype_+1)[(int)(c)]&_P)
|
#define isxdigit(c) ((_ctype_+1)[(int)(c)]&(_N|_X))
|
||||||
#define isalnum(c) ((_ctype_+1)[(int)(c)]&(_U|_L|_N))
|
#define isspace(c) ((_ctype_+1)[(int)(c)]&_S)
|
||||||
#define isprint(c) ((_ctype_+1)[(int)(c)]&(_P|_U|_L|_N|_B))
|
#define ispunct(c) ((_ctype_+1)[(int)(c)]&_P)
|
||||||
#define isgraph(c) ((_ctype_+1)[(int)(c)]&(_P|_U|_L|_N))
|
#define isalnum(c) ((_ctype_+1)[(int)(c)]&(_U|_L|_N))
|
||||||
#define iscntrl(c) ((_ctype_+1)[(int)(c)]&_C)
|
#define isprint(c) ((_ctype_+1)[(int)(c)]&(_P|_U|_L|_N|_B))
|
||||||
#define isascii(c) ((unsigned)(c)<=0177)
|
#define isgraph(c) ((_ctype_+1)[(int)(c)]&(_P|_U|_L|_N))
|
||||||
#define toupper(c) ((c)-'a'+'A')
|
#define iscntrl(c) ((_ctype_+1)[(int)(c)]&_C)
|
||||||
#define tolower(c) ((c)-'A'+'a')
|
#define isascii(c) ((unsigned)(c)<=0177)
|
||||||
#define toascii(c) ((c)&0177)
|
#define toupper(c) ((c)-'a'+'A')
|
||||||
|
#define tolower(c) ((c)-'A'+'a')
|
||||||
|
#define toascii(c) ((c)&0177)
|
||||||
|
|||||||
209
include/curses.h
209
include/curses.h
@@ -9,152 +9,155 @@
|
|||||||
#include <sgtty.h>
|
#include <sgtty.h>
|
||||||
#include <term.h>
|
#include <term.h>
|
||||||
|
|
||||||
#define bool int
|
#define bool int
|
||||||
|
#define reg register
|
||||||
|
|
||||||
#define TRUE (1)
|
#define TRUE (1)
|
||||||
#define FALSE (0)
|
#define FALSE (0)
|
||||||
#define ERR (0)
|
#define ERR (0)
|
||||||
#define OK (1)
|
#define OK (1)
|
||||||
|
|
||||||
#define _ENDLINE 001
|
#define _ENDLINE 001
|
||||||
#define _FULLWIN 002
|
#define _FULLWIN 002
|
||||||
#define _SCROLLWIN 004
|
#define _SCROLLWIN 004
|
||||||
#define _FLUSH 010
|
#define _FLUSH 010
|
||||||
#define _FULLLINE 020
|
#define _FULLLINE 020
|
||||||
#define _IDLINE 040
|
#define _IDLINE 040
|
||||||
#define _STANDOUT 0200
|
#define _STANDOUT 0200
|
||||||
#define _NOCHANGE -1
|
#define _NOCHANGE -1
|
||||||
|
|
||||||
#define _puts(s) tputs(s, 0, _putchar)
|
#define _puts(s) tputs(s, 0, _putchar)
|
||||||
|
|
||||||
typedef struct sgttyb SGTTY;
|
typedef struct sgttyb SGTTY;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Capabilities from termcap
|
* Capabilities from termcap
|
||||||
*/
|
*/
|
||||||
extern bool AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
|
|
||||||
XB, XN, XT, XS, XX;
|
extern bool AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
|
||||||
extern char *AL, *BC, *BT, *CD, *CE, *CL, *CM, *CR, *CS, *DC, *DL,
|
XB, XN, XT, XS, XX;
|
||||||
*DM, *DO, *ED, *EI, *K0, *K1, *K2, *K3, *K4, *K5, *K6,
|
extern char *AL, *BC, *BT, *CD, *CE, *CL, *CM, *CR, *CS, *DC, *DL,
|
||||||
*K7, *K8, *K9, *HO, *IC, *IM, *IP, *KD, *KE, *KH, *KL,
|
*DM, *DO, *ED, *EI, *K0, *K1, *K2, *K3, *K4, *K5, *K6,
|
||||||
*KR, *KS, *KU, *LL, *MA, *ND, *NL, *RC, *SC, *SE, *SF,
|
*K7, *K8, *K9, *HO, *IC, *IM, *IP, *KD, *KE, *KH, *KL,
|
||||||
*SO, *SR, *TA, *TE, *TI, *UC, *UE, *UP, *US, *VB, *VS,
|
*KR, *KS, *KU, *LL, *MA, *ND, *NL, *RC, *SC, *SE, *SF,
|
||||||
*VE, *AL_PARM, *DL_PARM, *UP_PARM, *DOWN_PARM,
|
*SO, *SR, *TA, *TE, *TI, *UC, *UE, *UP, *US, *VB, *VS,
|
||||||
*LEFT_PARM, *RIGHT_PARM;
|
*VE, *AL_PARM, *DL_PARM, *UP_PARM, *DOWN_PARM,
|
||||||
extern char PC;
|
*LEFT_PARM, *RIGHT_PARM;
|
||||||
|
extern char PC;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* From the tty modes...
|
* From the tty modes...
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern bool GT, NONL, UPPERCASE, normtty, _pfast;
|
extern bool GT, NONL, UPPERCASE, normtty, _pfast;
|
||||||
|
|
||||||
struct _win_st {
|
struct _win_st {
|
||||||
short _cury, _curx;
|
short _cury, _curx;
|
||||||
short _maxy, _maxx;
|
short _maxy, _maxx;
|
||||||
short _begy, _begx;
|
short _begy, _begx;
|
||||||
short _flags;
|
short _flags;
|
||||||
short _ch_off;
|
short _ch_off;
|
||||||
bool _clear;
|
bool _clear;
|
||||||
bool _leave;
|
bool _leave;
|
||||||
bool _scroll;
|
bool _scroll;
|
||||||
char **_y;
|
char **_y;
|
||||||
short *_firstch;
|
short *_firstch;
|
||||||
short *_lastch;
|
short *_lastch;
|
||||||
struct _win_st *_nextp, *_orig;
|
struct _win_st *_nextp, *_orig;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define WINDOW struct _win_st
|
#define WINDOW struct _win_st
|
||||||
|
|
||||||
extern bool My_term, _echoit, _rawmode, _endwin;
|
extern bool My_term, _echoit, _rawmode, _endwin;
|
||||||
|
|
||||||
extern char *Def_term, ttytype[];
|
extern char *Def_term, ttytype[];
|
||||||
|
|
||||||
extern int LINES, COLS, _tty_ch, _res_flg;
|
extern int LINES, COLS, _tty_ch, _res_flg;
|
||||||
|
|
||||||
extern SGTTY _tty;
|
extern SGTTY _tty;
|
||||||
|
|
||||||
extern WINDOW *stdscr, *curscr;
|
extern WINDOW *stdscr, *curscr;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Define VOID to stop lint from generating "null effect"
|
* Define VOID to stop lint from generating "null effect"
|
||||||
* comments.
|
* comments.
|
||||||
*/
|
*/
|
||||||
#ifdef lint
|
#ifdef lint
|
||||||
int __void__;
|
int __void__;
|
||||||
#define VOID(x) (__void__ = (int) (x))
|
#define VOID(x) (__void__ = (int) (x))
|
||||||
#else
|
#else
|
||||||
#define VOID(x) (x)
|
#define VOID(x) (x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* psuedo functions for standard screen
|
* psuedo functions for standard screen
|
||||||
*/
|
*/
|
||||||
#define addch(ch) VOID(waddch(stdscr, ch))
|
#define addch(ch) VOID(waddch(stdscr, ch))
|
||||||
#define getch() VOID(wgetch(stdscr))
|
#define getch() VOID(wgetch(stdscr))
|
||||||
#define addstr(str) VOID(waddstr(stdscr, str))
|
#define addstr(str) VOID(waddstr(stdscr, str))
|
||||||
#define getstr(str) VOID(wgetstr(stdscr, str))
|
#define getstr(str) VOID(wgetstr(stdscr, str))
|
||||||
#define move(y, x) VOID(wmove(stdscr, y, x))
|
#define move(y, x) VOID(wmove(stdscr, y, x))
|
||||||
#define clear() VOID(wclear(stdscr))
|
#define clear() VOID(wclear(stdscr))
|
||||||
#define erase() VOID(werase(stdscr))
|
#define erase() VOID(werase(stdscr))
|
||||||
#define clrtobot() VOID(wclrtobot(stdscr))
|
#define clrtobot() VOID(wclrtobot(stdscr))
|
||||||
#define clrtoeol() VOID(wclrtoeol(stdscr))
|
#define clrtoeol() VOID(wclrtoeol(stdscr))
|
||||||
#define insertln() VOID(winsertln(stdscr))
|
#define insertln() VOID(winsertln(stdscr))
|
||||||
#define deleteln() VOID(wdeleteln(stdscr))
|
#define deleteln() VOID(wdeleteln(stdscr))
|
||||||
#define refresh() VOID(wrefresh(stdscr))
|
#define refresh() VOID(wrefresh(stdscr))
|
||||||
#define inch() VOID(winch(stdscr))
|
#define inch() VOID(winch(stdscr))
|
||||||
#define insch(c) VOID(winsch(stdscr,c))
|
#define insch(c) VOID(winsch(stdscr,c))
|
||||||
#define delch() VOID(wdelch(stdscr))
|
#define delch() VOID(wdelch(stdscr))
|
||||||
#define standout() VOID(wstandout(stdscr))
|
#define standout() VOID(wstandout(stdscr))
|
||||||
#define standend() VOID(wstandend(stdscr))
|
#define standend() VOID(wstandend(stdscr))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* mv functions
|
* mv functions
|
||||||
*/
|
*/
|
||||||
#define mvwaddch(win,y,x,ch) VOID(wmove(win,y,x)==ERR?ERR:waddch(win,ch))
|
#define mvwaddch(win,y,x,ch) VOID(wmove(win,y,x)==ERR?ERR:waddch(win,ch))
|
||||||
#define mvwgetch(win,y,x) VOID(wmove(win,y,x)==ERR?ERR:wgetch(win))
|
#define mvwgetch(win,y,x) VOID(wmove(win,y,x)==ERR?ERR:wgetch(win))
|
||||||
#define mvwaddstr(win,y,x,str) VOID(wmove(win,y,x)==ERR?ERR:waddstr(win,str))
|
#define mvwaddstr(win,y,x,str) VOID(wmove(win,y,x)==ERR?ERR:waddstr(win,str))
|
||||||
#define mvwgetstr(win,y,x,str) VOID(wmove(win,y,x)==ERR?ERR:wgetstr(win,str))
|
#define mvwgetstr(win,y,x,str) VOID(wmove(win,y,x)==ERR?ERR:wgetstr(win,str))
|
||||||
#define mvwinch(win,y,x) VOID(wmove(win,y,x) == ERR ? ERR : winch(win))
|
#define mvwinch(win,y,x) VOID(wmove(win,y,x) == ERR ? ERR : winch(win))
|
||||||
#define mvwdelch(win,y,x) VOID(wmove(win,y,x) == ERR ? ERR : wdelch(win))
|
#define mvwdelch(win,y,x) VOID(wmove(win,y,x) == ERR ? ERR : wdelch(win))
|
||||||
#define mvwinsch(win,y,x,c) VOID(wmove(win,y,x) == ERR ? ERR:winsch(win,c))
|
#define mvwinsch(win,y,x,c) VOID(wmove(win,y,x) == ERR ? ERR:winsch(win,c))
|
||||||
#define mvaddch(y,x,ch) mvwaddch(stdscr,y,x,ch)
|
#define mvaddch(y,x,ch) mvwaddch(stdscr,y,x,ch)
|
||||||
#define mvgetch(y,x) mvwgetch(stdscr,y,x)
|
#define mvgetch(y,x) mvwgetch(stdscr,y,x)
|
||||||
#define mvaddstr(y,x,str) mvwaddstr(stdscr,y,x,str)
|
#define mvaddstr(y,x,str) mvwaddstr(stdscr,y,x,str)
|
||||||
#define mvgetstr(y,x,str) mvwgetstr(stdscr,y,x,str)
|
#define mvgetstr(y,x,str) mvwgetstr(stdscr,y,x,str)
|
||||||
#define mvinch(y,x) mvwinch(stdscr,y,x)
|
#define mvinch(y,x) mvwinch(stdscr,y,x)
|
||||||
#define mvdelch(y,x) mvwdelch(stdscr,y,x)
|
#define mvdelch(y,x) mvwdelch(stdscr,y,x)
|
||||||
#define mvinsch(y,x,c) mvwinsch(stdscr,y,x,c)
|
#define mvinsch(y,x,c) mvwinsch(stdscr,y,x,c)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* psuedo functions
|
* psuedo functions
|
||||||
*/
|
*/
|
||||||
#define clearok(win,bf) (win->_clear = bf)
|
|
||||||
#define leaveok(win,bf) (win->_leave = bf)
|
|
||||||
#define scrollok(win,bf) (win->_scroll = bf)
|
|
||||||
#define flushok(win,bf) (bf ? (win->_flags |= _FLUSH):(win->_flags &= ~_FLUSH))
|
|
||||||
#define getyx(win,y,x) y = win->_cury, x = win->_curx
|
|
||||||
#define winch(win) (win->_y[win->_cury][win->_curx] & 0177)
|
|
||||||
|
|
||||||
#define raw() (_tty.sg_flags|=RAW, _pfast=_rawmode=TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define clearok(win,bf) (win->_clear = bf)
|
||||||
#define noraw() (_tty.sg_flags&=~RAW,_rawmode=FALSE,_pfast=!(_tty.sg_flags&CRMOD),ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define leaveok(win,bf) (win->_leave = bf)
|
||||||
#define cbreak() (_tty.sg_flags |= CBREAK, _rawmode = TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define scrollok(win,bf) (win->_scroll = bf)
|
||||||
#define nocbreak() (_tty.sg_flags &= ~CBREAK,_rawmode=FALSE,ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define flushok(win,bf) (bf ? (win->_flags |= _FLUSH):(win->_flags &= ~_FLUSH))
|
||||||
#define crmode() cbreak() /* backwards compatability */
|
#define getyx(win,y,x) y = win->_cury, x = win->_curx
|
||||||
#define nocrmode() nocbreak() /* backwards compatability */
|
#define winch(win) (win->_y[win->_cury][win->_curx] & 0177)
|
||||||
#define echo() (_tty.sg_flags |= ECHO, _echoit = TRUE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
|
||||||
#define noecho() (_tty.sg_flags &= ~ECHO, _echoit = FALSE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
|
||||||
#define nl() (_tty.sg_flags |= CRMOD, _pfast = _rawmode,ioctl(_tty_ch, TIOCSETP, &_tty))
|
|
||||||
#define nonl() (_tty.sg_flags &= ~CRMOD,_pfast = TRUE, ioctl(_tty_ch, TIOCSETP,&_tty))
|
|
||||||
#define savetty() ((void) ioctl(_tty_ch, TIOCGETP, &_tty), _res_flg = _tty.sg_flags)
|
|
||||||
#define resetty() (_tty.sg_flags = _res_flg, (void) ioctl(_tty_ch, TIOCSETP, &_tty))
|
|
||||||
|
|
||||||
#define erasechar() (_tty.sg_erase)
|
#define raw() (_tty.sg_flags|=RAW, _pfast=_rawmode=TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
#define killchar() (_tty.sg_kill)
|
#define noraw() (_tty.sg_flags&=~RAW,_rawmode=FALSE,_pfast=!(_tty.sg_flags&CRMOD),ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
#define baudrate() (_tty.sg_ospeed)
|
#define cbreak() (_tty.sg_flags |= CBREAK, _rawmode = TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
|
#define nocbreak() (_tty.sg_flags &= ~CBREAK,_rawmode=FALSE,ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
|
#define crmode() cbreak() /* backwards compatability */
|
||||||
|
#define nocrmode() nocbreak() /* backwards compatability */
|
||||||
|
#define echo() (_tty.sg_flags |= ECHO, _echoit = TRUE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
|
#define noecho() (_tty.sg_flags &= ~ECHO, _echoit = FALSE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
|
#define nl() (_tty.sg_flags |= CRMOD, _pfast = _rawmode,ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
|
#define nonl() (_tty.sg_flags &= ~CRMOD,_pfast = TRUE, ioctl(_tty_ch, TIOCSETP,&_tty))
|
||||||
|
#define savetty() ((void) ioctl(_tty_ch, TIOCGETP, &_tty), _res_flg = _tty.sg_flags)
|
||||||
|
#define resetty() (_tty.sg_flags = _res_flg, (void) ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
|
|
||||||
WINDOW *initscr(), *newwin(), *subwin();
|
#define erasechar() (_tty.sg_erase)
|
||||||
char *longname(), *getcap();
|
#define killchar() (_tty.sg_kill)
|
||||||
|
#define baudrate() (_tty.sg_ospeed)
|
||||||
|
|
||||||
|
WINDOW *initscr(), *newwin(), *subwin();
|
||||||
|
char *longname(), *getcap();
|
||||||
|
|
||||||
int wmove (WINDOW *, int, int);
|
int wmove (WINDOW *, int, int);
|
||||||
int wrefresh (WINDOW *);
|
int wrefresh (WINDOW *);
|
||||||
@@ -178,15 +181,11 @@ int waddstr (WINDOW *, char *);
|
|||||||
int wgetstr (WINDOW *, char *);
|
int wgetstr (WINDOW *, char *);
|
||||||
int wdeleteln (WINDOW *);
|
int wdeleteln (WINDOW *);
|
||||||
void mvcur(int ly, int lx, int y, int x);
|
void mvcur(int ly, int lx, int y, int x);
|
||||||
void overwrite(WINDOW *win1, WINDOW *win2);
|
|
||||||
void wclrtobot(WINDOW *win);
|
|
||||||
int mvprintw(int y, int x, char *fmt, ...);
|
|
||||||
int mvwprintw(WINDOW *win, int y, int x, char *fmt, ...);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Used to be in unctrl.h.
|
* Used to be in unctrl.h.
|
||||||
*/
|
*/
|
||||||
#define unctrl(c) _unctrl[(c) & 0177]
|
#define unctrl(c) _unctrl[(c) & 0177]
|
||||||
extern char *_unctrl[];
|
extern char *_unctrl[];
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
28
include/dbm.h
Normal file
28
include/dbm.h
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1980 Regents of the University of California.
|
||||||
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
|
* specifies the terms and conditions for redistribution.
|
||||||
|
*
|
||||||
|
* @(#)dbm.h 5.1 (Berkeley) 3/27/86
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef NULL
|
||||||
|
/*
|
||||||
|
* this is lunacy, we no longer use it (and never should have
|
||||||
|
* unconditionally defined it), but, this whole file is for
|
||||||
|
* backwards compatability - someone may rely on this.
|
||||||
|
*/
|
||||||
|
#define NULL ((char *) 0)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <ndbm.h>
|
||||||
|
|
||||||
|
datum fetch();
|
||||||
|
datum firstkey();
|
||||||
|
datum nextkey();
|
||||||
|
#if 0
|
||||||
|
datum makdatum();
|
||||||
|
datum firsthash();
|
||||||
|
long calchash();
|
||||||
|
long hashinc();
|
||||||
|
#endif
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1980, 1993
|
* Copyright (c) 1980, 1993
|
||||||
* The Regents of the University of California. All rights reserved.
|
* The Regents of the University of California. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@@ -12,8 +12,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* @(#)fstab.h 8.1.1 (2.11BSD) 1996/1/15
|
* @(#)fstab.h 8.1.1 (2.11BSD) 1996/1/15
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _FSTAB_H_
|
#ifndef _FSTAB_H_
|
||||||
@@ -47,20 +47,23 @@
|
|||||||
* if type is "rq", then use concatenation of fs_file and "quotas" to locate
|
* if type is "rq", then use concatenation of fs_file and "quotas" to locate
|
||||||
* quota file.
|
* quota file.
|
||||||
*/
|
*/
|
||||||
#define FSTAB_RW "rw" /* read/write device */
|
#define _PATH_FSTAB "/etc/fstab"
|
||||||
#define FSTAB_RQ "rq" /* read/write with quotas */
|
#define FSTAB "/etc/fstab" /* deprecated */
|
||||||
#define FSTAB_RO "ro" /* read-only device */
|
|
||||||
#define FSTAB_SW "sw" /* swap device */
|
#define FSTAB_RW "rw" /* read/write device */
|
||||||
#define FSTAB_XX "xx" /* ignore totally */
|
#define FSTAB_RQ "rq" /* read/write with quotas */
|
||||||
|
#define FSTAB_RO "ro" /* read-only device */
|
||||||
|
#define FSTAB_SW "sw" /* swap device */
|
||||||
|
#define FSTAB_XX "xx" /* ignore totally */
|
||||||
|
|
||||||
struct fstab {
|
struct fstab {
|
||||||
char *fs_spec; /* block special device name */
|
char *fs_spec; /* block special device name */
|
||||||
char *fs_file; /* file system path prefix */
|
char *fs_file; /* file system path prefix */
|
||||||
char *fs_vfstype; /* File system type, ufs, nfs */
|
char *fs_vfstype; /* File system type, ufs, nfs */
|
||||||
char *fs_mntops; /* Mount options ala -o */
|
char *fs_mntops; /* Mount options ala -o */
|
||||||
char *fs_type; /* FSTAB_* from fs_mntops */
|
char *fs_type; /* FSTAB_* from fs_mntops */
|
||||||
int fs_freq; /* dump frequency, in days */
|
int fs_freq; /* dump frequency, in days */
|
||||||
int fs_passno; /* pass number on parallel dump */
|
int fs_passno; /* pass number on parallel dump */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct fstab *getfsent();
|
struct fstab *getfsent();
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
/* grp.h 4.1 83/05/03 */
|
/* grp.h 4.1 83/05/03 */
|
||||||
|
|
||||||
struct group { /* see getgrent(3) */
|
struct group { /* see getgrent(3) */
|
||||||
char *gr_name;
|
char *gr_name;
|
||||||
char *gr_passwd;
|
char *gr_passwd;
|
||||||
int gr_gid;
|
int gr_gid;
|
||||||
char **gr_mem;
|
char **gr_mem;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct group *getgrent(void);
|
struct group *getgrent(void);
|
||||||
|
|||||||
47
include/ieee.h
Normal file
47
include/ieee.h
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
typedef union // LITTLE ENDIAN
|
||||||
|
{
|
||||||
|
double value;
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
unsigned long lsw;
|
||||||
|
unsigned long msw;
|
||||||
|
} parts;
|
||||||
|
} ieee_double_shape_type;
|
||||||
|
|
||||||
|
/* Get two 32 bit ints from a double. */
|
||||||
|
|
||||||
|
#define EXTRACT_WORDS(ix0,ix1,d) \
|
||||||
|
do { \
|
||||||
|
ieee_double_shape_type ew_u; \
|
||||||
|
ew_u.value = (d); \
|
||||||
|
(ix0) = ew_u.parts.msw; \
|
||||||
|
(ix1) = ew_u.parts.lsw; \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
/* Get the more significant 32 bit int from a double. */
|
||||||
|
|
||||||
|
#define GET_HIGH_WORD(i,d) \
|
||||||
|
do { \
|
||||||
|
ieee_double_shape_type gh_u; \
|
||||||
|
gh_u.value = (d); \
|
||||||
|
(i) = gh_u.parts.msw; \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
/* Set a double from two 32 bit ints. */
|
||||||
|
|
||||||
|
#define INSERT_WORDS(d,ix0,ix1) \
|
||||||
|
do { \
|
||||||
|
ieee_double_shape_type iw_u; \
|
||||||
|
iw_u.parts.msw = (ix0); \
|
||||||
|
iw_u.parts.lsw = (ix1); \
|
||||||
|
(d) = iw_u.value; \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#define SET_HIGH_WORD(d,v) \
|
||||||
|
do { \
|
||||||
|
ieee_double_shape_type sh_u; \
|
||||||
|
sh_u.value = (d); \
|
||||||
|
sh_u.parts.msw = (v); \
|
||||||
|
(d) = sh_u.value; \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
@@ -3,11 +3,11 @@
|
|||||||
* All rights reserved. The Berkeley software License Agreement
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
* specifies the terms and conditions for redistribution.
|
* specifies the terms and conditions for redistribution.
|
||||||
*
|
*
|
||||||
* @(#)lastlog.h 5.1 (Berkeley) 5/30/85
|
* @(#)lastlog.h 5.1 (Berkeley) 5/30/85
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct lastlog {
|
struct lastlog {
|
||||||
time_t ll_time;
|
time_t ll_time;
|
||||||
char ll_line[8];
|
char ll_line[8];
|
||||||
char ll_host[16]; /* same as in utmp */
|
char ll_host[16]; /* same as in utmp */
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -36,6 +36,36 @@
|
|||||||
#ifndef _LIMITS_H_
|
#ifndef _LIMITS_H_
|
||||||
#define _LIMITS_H_
|
#define _LIMITS_H_
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We don't need this crud at the moment so save on abuse of the C
|
||||||
|
* preprocessor by not doing the defines.
|
||||||
|
|
||||||
|
#define _POSIX_ARG_MAX 4096
|
||||||
|
#define _POSIX_CHILD_MAX 6
|
||||||
|
#define _POSIX_LINK_MAX 8
|
||||||
|
#define _POSIX_MAX_CANON 255
|
||||||
|
#define _POSIX_MAX_INPUT 255
|
||||||
|
#define _POSIX_NAME_MAX 14
|
||||||
|
#define _POSIX_NGROUPS_MAX 0
|
||||||
|
#define _POSIX_OPEN_MAX 16
|
||||||
|
#define _POSIX_PATH_MAX 255
|
||||||
|
#define _POSIX_PIPE_BUF 512
|
||||||
|
#define _POSIX_SSIZE_MAX 32767
|
||||||
|
#define _POSIX_STREAM_MAX 8
|
||||||
|
#define _POSIX_TZNAME_MAX 3
|
||||||
|
|
||||||
|
#define _POSIX2_BC_BASE_MAX 99
|
||||||
|
#define _POSIX2_BC_DIM_MAX 2048
|
||||||
|
#define _POSIX2_BC_SCALE_MAX 99
|
||||||
|
#define _POSIX2_BC_STRING_MAX 1000
|
||||||
|
#define _POSIX2_EQUIV_CLASS_MAX 2
|
||||||
|
#define _POSIX2_EXPR_NEST_MAX 32
|
||||||
|
#define _POSIX2_LINE_MAX 2048
|
||||||
|
#define _POSIX2_RE_DUP_MAX 255
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
#include <machine/limits.h>
|
#include <machine/limits.h>
|
||||||
|
/* #include <sys/syslimits.h> */
|
||||||
|
|
||||||
#endif /* !_LIMITS_H_ */
|
#endif /* !_LIMITS_H_ */
|
||||||
|
|||||||
@@ -4,16 +4,17 @@
|
|||||||
* specifies the terms and conditions for redistribution.
|
* specifies the terms and conditions for redistribution.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
double fabs(double), floor(double), ceil(double);
|
extern double fabs(), floor(), ceil(), fmod(), ldexp();
|
||||||
double sqrt(double), hypot(double, double);
|
extern double sqrt(), hypot(), atof();
|
||||||
double sin(double), cos(double), tan(double);
|
extern double sin(), cos(), tan(), asin(), acos(), atan(), atan2();
|
||||||
double asin(double), acos(double), atan(double), atan2(double, double);
|
extern double exp(), log(), log10(), pow();
|
||||||
double exp(double), log(double), log10(double), pow(double, double);
|
extern double sinh(), cosh(), tanh();
|
||||||
double sinh(double), cosh(double), tanh(double);
|
extern double gamma();
|
||||||
double j0(double), j1(double), jn(int, double);
|
extern double j0(), j1(), jn(), y0(), y1(), yn();
|
||||||
double y0(double), y1(double), yn(int, double);
|
|
||||||
|
|
||||||
#define HUGE_VAL 3.40282347e+38 /* TBD??? use infinity? */
|
// ###PITO #define HUGE 1.701411733192644270e38
|
||||||
|
#define HUGE 1.79769313486231570000e+308
|
||||||
|
#define LOGHUGE 307
|
||||||
|
|
||||||
int isnanf(float x);
|
int isnanf(float x);
|
||||||
int isnan(double x);
|
int isnan(double x);
|
||||||
@@ -31,21 +32,3 @@ float ldexpf(float x, int exp);
|
|||||||
double ldexp(double x, int exp);
|
double ldexp(double x, int exp);
|
||||||
|
|
||||||
double fmod(double x, double y);
|
double fmod(double x, double y);
|
||||||
|
|
||||||
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
|
|
||||||
|
|
||||||
#define M_E 2.7182818284590452354 /* e */
|
|
||||||
#define M_LOG2E 1.4426950408889634074 /* log 2e */
|
|
||||||
#define M_LOG10E 0.43429448190325182765 /* log 10e */
|
|
||||||
#define M_LN2 0.69314718055994530942 /* log e2 */
|
|
||||||
#define M_LN10 2.30258509299404568402 /* log e10 */
|
|
||||||
#define M_PI 3.14159265358979323846 /* pi */
|
|
||||||
#define M_PI_2 1.57079632679489661923 /* pi/2 */
|
|
||||||
#define M_PI_4 0.78539816339744830962 /* pi/4 */
|
|
||||||
#define M_1_PI 0.31830988618379067154 /* 1/pi */
|
|
||||||
#define M_2_PI 0.63661977236758134308 /* 2/pi */
|
|
||||||
#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
|
|
||||||
#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
|
|
||||||
#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
|
|
||||||
|
|
||||||
#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
|
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
* All rights reserved. The Berkeley software License Agreement
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
* specifies the terms and conditions for redistribution.
|
* specifies the terms and conditions for redistribution.
|
||||||
*
|
*
|
||||||
* @(#)mtab.h 5.1 (Berkeley) 5/30/85
|
* @(#)mtab.h 5.1 (Berkeley) 5/30/85
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Mounted device accounting file.
|
* Mounted device accounting file.
|
||||||
*/
|
*/
|
||||||
struct mtab {
|
struct mtab {
|
||||||
char m_path[32]; /* mounted on pathname */
|
char m_path[32]; /* mounted on pathname */
|
||||||
char m_dname[32]; /* block device pathname */
|
char m_dname[32]; /* block device pathname */
|
||||||
char m_type[4]; /* read-only, quotas */
|
char m_type[4]; /* read-only, quotas */
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,60 +3,64 @@
|
|||||||
* All rights reserved. The Berkeley software License Agreement
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
* specifies the terms and conditions for redistribution.
|
* specifies the terms and conditions for redistribution.
|
||||||
*
|
*
|
||||||
* @(#)ndbm.h 5.1.1 (2.11BSD GTE) 12/31/93
|
* @(#)ndbm.h 5.1.1 (2.11BSD GTE) 12/31/93
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Hashed key data base library.
|
* Hashed key data base library.
|
||||||
*/
|
*/
|
||||||
#define PBLKSIZ 1024
|
#define PBLKSIZ 1024
|
||||||
#define DBLKSIZ 1024
|
#ifdef pdp11
|
||||||
|
#define DBLKSIZ 512
|
||||||
|
#else
|
||||||
|
#define DBLKSIZ 4096
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int dbm_dirf; /* open directory file */
|
int dbm_dirf; /* open directory file */
|
||||||
int dbm_pagf; /* open page file */
|
int dbm_pagf; /* open page file */
|
||||||
int dbm_flags; /* flags, see below */
|
int dbm_flags; /* flags, see below */
|
||||||
long dbm_maxbno; /* last ``bit'' in dir file */
|
long dbm_maxbno; /* last ``bit'' in dir file */
|
||||||
long dbm_bitno; /* current bit number */
|
long dbm_bitno; /* current bit number */
|
||||||
long dbm_hmask; /* hash mask */
|
long dbm_hmask; /* hash mask */
|
||||||
long dbm_blkptr; /* current block for dbm_nextkey */
|
long dbm_blkptr; /* current block for dbm_nextkey */
|
||||||
int dbm_keyptr; /* current key for dbm_nextkey */
|
int dbm_keyptr; /* current key for dbm_nextkey */
|
||||||
long dbm_blkno; /* current page to read/write */
|
long dbm_blkno; /* current page to read/write */
|
||||||
long dbm_pagbno; /* current page in pagbuf */
|
long dbm_pagbno; /* current page in pagbuf */
|
||||||
char dbm_pagbuf[PBLKSIZ]; /* page file block buffer */
|
char dbm_pagbuf[PBLKSIZ]; /* page file block buffer */
|
||||||
long dbm_dirbno; /* current block in dirbuf */
|
long dbm_dirbno; /* current block in dirbuf */
|
||||||
char dbm_dirbuf[DBLKSIZ]; /* directory file block buffer */
|
char dbm_dirbuf[DBLKSIZ]; /* directory file block buffer */
|
||||||
} DBM;
|
} DBM;
|
||||||
|
|
||||||
#define _DBM_RDONLY 0x1 /* data base open read-only */
|
#define _DBM_RDONLY 0x1 /* data base open read-only */
|
||||||
#define _DBM_IOERR 0x2 /* data base I/O error */
|
#define _DBM_IOERR 0x2 /* data base I/O error */
|
||||||
|
|
||||||
#define dbm_rdonly(db) ((db)->dbm_flags & _DBM_RDONLY)
|
#define dbm_rdonly(db) ((db)->dbm_flags & _DBM_RDONLY)
|
||||||
|
|
||||||
#define dbm_error(db) ((db)->dbm_flags & _DBM_IOERR)
|
#define dbm_error(db) ((db)->dbm_flags & _DBM_IOERR)
|
||||||
/* use this one at your own risk! */
|
/* use this one at your own risk! */
|
||||||
#define dbm_clearerr(db) ((db)->dbm_flags &= ~_DBM_IOERR)
|
#define dbm_clearerr(db) ((db)->dbm_flags &= ~_DBM_IOERR)
|
||||||
|
|
||||||
/* for flock(2) and fstat(2) */
|
/* for flock(2) and fstat(2) */
|
||||||
#define dbm_dirfno(db) ((db)->dbm_dirf)
|
#define dbm_dirfno(db) ((db)->dbm_dirf)
|
||||||
#define dbm_pagfno(db) ((db)->dbm_pagf)
|
#define dbm_pagfno(db) ((db)->dbm_pagf)
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char *dptr;
|
char *dptr;
|
||||||
int dsize;
|
int dsize;
|
||||||
} datum;
|
} datum;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* flags to dbm_store()
|
* flags to dbm_store()
|
||||||
*/
|
*/
|
||||||
#define DBM_INSERT 0
|
#define DBM_INSERT 0
|
||||||
#define DBM_REPLACE 1
|
#define DBM_REPLACE 1
|
||||||
|
|
||||||
DBM *dbm_open();
|
DBM *dbm_open();
|
||||||
void dbm_close();
|
void dbm_close();
|
||||||
datum dbm_fetch();
|
datum dbm_fetch();
|
||||||
datum dbm_firstkey();
|
datum dbm_firstkey();
|
||||||
datum dbm_nextkey();
|
datum dbm_nextkey();
|
||||||
long dbm_forder();
|
long dbm_forder();
|
||||||
int dbm_delete();
|
int dbm_delete();
|
||||||
int dbm_store();
|
int dbm_store();
|
||||||
|
|||||||
@@ -18,17 +18,17 @@
|
|||||||
/*
|
/*
|
||||||
* Protocols
|
* Protocols
|
||||||
*/
|
*/
|
||||||
#define IPPROTO_IP 0 /* dummy for IP */
|
#define IPPROTO_IP 0 /* dummy for IP */
|
||||||
#define IPPROTO_ICMP 1 /* control message protocol */
|
#define IPPROTO_ICMP 1 /* control message protocol */
|
||||||
#define IPPROTO_GGP 3 /* gateway^2 (deprecated) */
|
#define IPPROTO_GGP 3 /* gateway^2 (deprecated) */
|
||||||
#define IPPROTO_TCP 6 /* tcp */
|
#define IPPROTO_TCP 6 /* tcp */
|
||||||
#define IPPROTO_EGP 8 /* exterior gateway protocol */
|
#define IPPROTO_EGP 8 /* exterior gateway protocol */
|
||||||
#define IPPROTO_PUP 12 /* pup */
|
#define IPPROTO_PUP 12 /* pup */
|
||||||
#define IPPROTO_UDP 17 /* user datagram protocol */
|
#define IPPROTO_UDP 17 /* user datagram protocol */
|
||||||
#define IPPROTO_IDP 22 /* xns idp */
|
#define IPPROTO_IDP 22 /* xns idp */
|
||||||
|
|
||||||
#define IPPROTO_RAW 255 /* raw IP packet */
|
#define IPPROTO_RAW 255 /* raw IP packet */
|
||||||
#define IPPROTO_MAX 256
|
#define IPPROTO_MAX 256
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -37,21 +37,21 @@
|
|||||||
* Ports > IPPORT_USERRESERVED are reserved
|
* Ports > IPPORT_USERRESERVED are reserved
|
||||||
* for servers, not necessarily privileged.
|
* for servers, not necessarily privileged.
|
||||||
*/
|
*/
|
||||||
#define IPPORT_RESERVED 1024
|
#define IPPORT_RESERVED 1024
|
||||||
#define IPPORT_USERRESERVED 5000
|
#define IPPORT_USERRESERVED 5000
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Link numbers
|
* Link numbers
|
||||||
*/
|
*/
|
||||||
#define IMPLINK_IP 155
|
#define IMPLINK_IP 155
|
||||||
#define IMPLINK_LOWEXPER 156
|
#define IMPLINK_LOWEXPER 156
|
||||||
#define IMPLINK_HIGHEXPER 158
|
#define IMPLINK_HIGHEXPER 158
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Internet address (a structure for historical reasons)
|
* Internet address (a structure for historical reasons)
|
||||||
*/
|
*/
|
||||||
struct in_addr {
|
struct in_addr {
|
||||||
u_long s_addr;
|
u_long s_addr;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -59,51 +59,51 @@ struct in_addr {
|
|||||||
* On subnets, the decomposition of addresses to host and net parts
|
* On subnets, the decomposition of addresses to host and net parts
|
||||||
* is done according to subnet mask, not the masks here.
|
* is done according to subnet mask, not the masks here.
|
||||||
*/
|
*/
|
||||||
#define IN_CLASSA(i) (((long)(i) & 0x80000000L) == 0)
|
#define IN_CLASSA(i) (((long)(i) & 0x80000000L) == 0)
|
||||||
#define IN_CLASSA_NET 0xff000000L
|
#define IN_CLASSA_NET 0xff000000L
|
||||||
#define IN_CLASSA_NSHIFT 24
|
#define IN_CLASSA_NSHIFT 24
|
||||||
#define IN_CLASSA_HOST 0x00ffffffL
|
#define IN_CLASSA_HOST 0x00ffffffL
|
||||||
#define IN_CLASSA_MAX 128
|
#define IN_CLASSA_MAX 128
|
||||||
|
|
||||||
#define IN_CLASSB(i) (((long)(i) & 0xc0000000L) == 0x80000000L)
|
#define IN_CLASSB(i) (((long)(i) & 0xc0000000L) == 0x80000000L)
|
||||||
#define IN_CLASSB_NET 0xffff0000L
|
#define IN_CLASSB_NET 0xffff0000L
|
||||||
#define IN_CLASSB_NSHIFT 16
|
#define IN_CLASSB_NSHIFT 16
|
||||||
#define IN_CLASSB_HOST 0x0000ffffL
|
#define IN_CLASSB_HOST 0x0000ffffL
|
||||||
#define IN_CLASSB_MAX 65536
|
#define IN_CLASSB_MAX 65536
|
||||||
|
|
||||||
#define IN_CLASSC(i) (((long)(i) & 0xe0000000L) == 0xc0000000L)
|
#define IN_CLASSC(i) (((long)(i) & 0xe0000000L) == 0xc0000000L)
|
||||||
#define IN_CLASSC_NET 0xffffff00L
|
#define IN_CLASSC_NET 0xffffff00L
|
||||||
#define IN_CLASSC_NSHIFT 8
|
#define IN_CLASSC_NSHIFT 8
|
||||||
#define IN_CLASSC_HOST 0x000000ffL
|
#define IN_CLASSC_HOST 0x000000ffL
|
||||||
|
|
||||||
#define IN_CLASSD(i) (((long)(i) & 0xf0000000L) == 0xe0000000L)
|
#define IN_CLASSD(i) (((long)(i) & 0xf0000000L) == 0xe0000000L)
|
||||||
#define IN_MULTICAST(i) IN_CLASSD(i)
|
#define IN_MULTICAST(i) IN_CLASSD(i)
|
||||||
|
|
||||||
#define IN_EXPERIMENTAL(i) (((long)(i) & 0xe0000000L) == 0xe0000000L)
|
#define IN_EXPERIMENTAL(i) (((long)(i) & 0xe0000000L) == 0xe0000000L)
|
||||||
#define IN_BADCLASS(i) (((long)(i) & 0xf0000000L) == 0xf0000000L)
|
#define IN_BADCLASS(i) (((long)(i) & 0xf0000000L) == 0xf0000000L)
|
||||||
|
|
||||||
#define INADDR_ANY 0x00000000L
|
#define INADDR_ANY 0x00000000L
|
||||||
#define INADDR_BROADCAST 0xffffffffL /* must be masked */
|
#define INADDR_BROADCAST 0xffffffffL /* must be masked */
|
||||||
#ifndef KERNEL
|
#ifndef KERNEL
|
||||||
#define INADDR_NONE 0xffffffffL /* -1 return */
|
#define INADDR_NONE 0xffffffffL /* -1 return */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define IN_LOOPBACKNET 127 /* official! */
|
#define IN_LOOPBACKNET 127 /* official! */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Socket address, internet style.
|
* Socket address, internet style.
|
||||||
*/
|
*/
|
||||||
struct sockaddr_in {
|
struct sockaddr_in {
|
||||||
short sin_family;
|
short sin_family;
|
||||||
u_short sin_port;
|
u_short sin_port;
|
||||||
struct in_addr sin_addr;
|
struct in_addr sin_addr;
|
||||||
char sin_zero[8];
|
char sin_zero[8];
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Options for use with [gs]etsockopt at the IP level.
|
* Options for use with [gs]etsockopt at the IP level.
|
||||||
*/
|
*/
|
||||||
#define IP_OPTIONS 1 /* set/get IP per-packet options */
|
#define IP_OPTIONS 1 /* set/get IP per-packet options */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Definitions for inet sysctl operations.
|
* Definitions for inet sysctl operations.
|
||||||
@@ -111,55 +111,55 @@ struct sockaddr_in {
|
|||||||
* Third level is protocol number.
|
* Third level is protocol number.
|
||||||
* Fourth level is desired variable within that protocol.
|
* Fourth level is desired variable within that protocol.
|
||||||
*/
|
*/
|
||||||
#define IPPROTO_MAXID (IPPROTO_IDP + 1) /* don't list to IPPROTO_MAX */
|
#define IPPROTO_MAXID (IPPROTO_IDP + 1) /* don't list to IPPROTO_MAX */
|
||||||
|
|
||||||
#ifndef KERNEL
|
#ifndef KERNEL
|
||||||
#define CTL_IPPROTO_NAMES { \
|
#define CTL_IPPROTO_NAMES { \
|
||||||
{ "ip", CTLTYPE_NODE }, \
|
{ "ip", CTLTYPE_NODE }, \
|
||||||
{ "icmp", CTLTYPE_NODE }, \
|
{ "icmp", CTLTYPE_NODE }, \
|
||||||
{ "igmp", CTLTYPE_NODE }, \
|
{ "igmp", CTLTYPE_NODE }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ "tcp", CTLTYPE_NODE }, \
|
{ "tcp", CTLTYPE_NODE }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ "udp", CTLTYPE_NODE }, \
|
{ "udp", CTLTYPE_NODE }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ "idp", CTLTYPE_NODE }, \
|
{ "idp", CTLTYPE_NODE }, \
|
||||||
}
|
}
|
||||||
#endif /* KERNEL */
|
#endif /* KERNEL */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Names for IP sysctl objects
|
* Names for IP sysctl objects
|
||||||
*/
|
*/
|
||||||
#define IPCTL_FORWARDING 1 /* act as router */
|
#define IPCTL_FORWARDING 1 /* act as router */
|
||||||
#define IPCTL_SENDREDIRECTS 2 /* may send redirects when forwarding */
|
#define IPCTL_SENDREDIRECTS 2 /* may send redirects when forwarding */
|
||||||
#define IPCTL_DEFTTL 3 /* default TTL */
|
#define IPCTL_DEFTTL 3 /* default TTL */
|
||||||
#ifdef notyet
|
#ifdef notyet
|
||||||
#define IPCTL_DEFMTU 4 /* default MTU */
|
#define IPCTL_DEFMTU 4 /* default MTU */
|
||||||
#endif
|
#endif
|
||||||
#define IPCTL_FORWSRCRT 5 /* forward source-routed dgrams */
|
#define IPCTL_FORWSRCRT 5 /* forward source-routed dgrams */
|
||||||
#define IPCTL_MAXID 6
|
#define IPCTL_MAXID 6
|
||||||
|
|
||||||
#ifndef KERNEL
|
#ifndef KERNEL
|
||||||
#define IPCTL_NAMES { \
|
#define IPCTL_NAMES { \
|
||||||
{ 0, 0 }, \
|
{ 0, 0 }, \
|
||||||
{ "forwarding", CTLTYPE_INT }, \
|
{ "forwarding", CTLTYPE_INT }, \
|
||||||
{ "redirect", CTLTYPE_INT }, \
|
{ "redirect", CTLTYPE_INT }, \
|
||||||
{ "ttl", CTLTYPE_INT }, \
|
{ "ttl", CTLTYPE_INT }, \
|
||||||
{ "mtu", CTLTYPE_INT }, \
|
{ "mtu", CTLTYPE_INT }, \
|
||||||
{ "forwsrcrt", CTLTYPE_INT }, \
|
{ "forwsrcrt", CTLTYPE_INT }, \
|
||||||
}
|
}
|
||||||
#endif /* KERNEL */
|
#endif /* KERNEL */
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -30,37 +30,37 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
#ifndef _NLIST_H_
|
#ifndef _NLIST_H_
|
||||||
#define _NLIST_H_
|
#define _NLIST_H_
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Symbol table entry format.
|
* Symbol table entry format.
|
||||||
*/
|
*/
|
||||||
struct nlist {
|
struct nlist {
|
||||||
char *n_name; /* In memory address of symbol name,
|
char *n_name; /* In memory address of symbol name,
|
||||||
* or string table offset (file) */
|
or string table offset (file) */
|
||||||
u_short n_len; /* Length of name in bytes */
|
u_short n_len; /* Length of name in bytes */
|
||||||
u_short n_type; /* Type of symbol - see below */
|
u_short n_type; /* Type of symbol - see below */
|
||||||
u_int n_value; /* Symbol value */
|
u_int n_value; /* Symbol value */
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Simple values for n_type.
|
* Simple values for n_type.
|
||||||
*/
|
*/
|
||||||
#define N_UNDF 0x00 /* undefined */
|
#define N_UNDF 0x00 /* undefined */
|
||||||
#define N_ABS 0x01 /* absolute */
|
#define N_ABS 0x01 /* absolute */
|
||||||
#define N_TEXT 0x02 /* text segment */
|
#define N_TEXT 0x02 /* text segment */
|
||||||
#define N_DATA 0x03 /* data segment */
|
#define N_DATA 0x03 /* data segment */
|
||||||
#define N_BSS 0x04 /* bss segment */
|
#define N_BSS 0x04 /* bss segment */
|
||||||
#define N_STRNG 0x05 /* string segment (for assembler) */
|
#define N_STRNG 0x05 /* string segment (for assembler) */
|
||||||
#define N_COMM 0x06 /* .comm segment (for assembler) */
|
#define N_COMM 0x06 /* .comm segment (for assembler) */
|
||||||
#define N_FN 0x1f /* file name */
|
#define N_FN 0x1f /* file name */
|
||||||
|
|
||||||
#define N_TYPE 0x1f /* mask for all the type bits */
|
#define N_TYPE 0x1f /* mask for all the type bits */
|
||||||
#define N_EXT 0x20 /* external (global) bit, OR'ed in */
|
#define N_EXT 0x20 /* external (global) bit, OR'ed in */
|
||||||
#define N_WEAK 0x40 /* weak reference bit, OR'ed in */
|
#define N_WEAK 0x40 /* weak reference bit, OR'ed in */
|
||||||
#define N_LOC 0x80 /* local, for assembler */
|
#define N_LOC 0x80 /* local, for assembler */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get symbols from a file.
|
* Get symbols from a file.
|
||||||
@@ -72,4 +72,4 @@ int nlist (char *name, struct nlist *list);
|
|||||||
*/
|
*/
|
||||||
int knlist (struct nlist *list);
|
int knlist (struct nlist *list);
|
||||||
|
|
||||||
#endif /* !_NLIST_H_ */
|
#endif /* !_NLIST_H_ */
|
||||||
|
|||||||
@@ -14,53 +14,46 @@
|
|||||||
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
||||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
*/
|
*/
|
||||||
#define _PATH_BSHELL "/bin/sh"
|
#define _PATH_BSHELL "/bin/sh"
|
||||||
#define _PATH_CSHELL "/bin/csh"
|
#define _PATH_CSHELL "/bin/csh"
|
||||||
#define _PATH_CP "/bin/cp"
|
#define _PATH_CP "/bin/cp"
|
||||||
#define _PATH_ECHO "/bin/echo"
|
#define _PATH_ECHO "/bin/echo"
|
||||||
#define _PATH_MORE "/bin/more"
|
#define _PATH_MORE "/bin/more"
|
||||||
#define _PATH_RSH "/bin/rsh"
|
#define _PATH_RSH "/bin/rsh"
|
||||||
#define _PATH_VI "/bin/vi"
|
#define _PATH_VI "/bin/vi"
|
||||||
#define _PATH_CORE "/core"
|
#define _PATH_CORE "/core"
|
||||||
#define _PATH_DEV "/dev/"
|
#define _PATH_DEV "/dev/"
|
||||||
#define _PATH_CONSOLE "/dev/console"
|
#define _PATH_CONSOLE "/dev/console"
|
||||||
#define _PATH_LOG "/dev/log"
|
#define _PATH_DEVNULL "/dev/null"
|
||||||
#define _PATH_DEVNULL "/dev/null"
|
#define _PATH_TTY "/dev/tty"
|
||||||
#define _PATH_TTY "/dev/tty"
|
|
||||||
#define _PATH_MEM "/dev/mem"
|
#define _PATH_MEM "/dev/mem"
|
||||||
#define _PATH_SWAP "/dev/swap"
|
#define _PATH_SWAP "/dev/swap"
|
||||||
#define _PATH_FSTAB "/etc/fstab"
|
#define _PATH_LOCALTIME "/etc/localtime"
|
||||||
#define _PATH_LOCALTIME "/etc/localtime"
|
#define _PATH_MOTD "/etc/motd"
|
||||||
#define _PATH_MOTD "/etc/motd"
|
#define _PATH_NOLOGIN "/etc/nologin"
|
||||||
#define _PATH_NOLOGIN "/etc/nologin"
|
|
||||||
#define _PATH_PASSWD "/etc/passwd"
|
|
||||||
#define _PATH_PTMP "/etc/ptmp"
|
|
||||||
#define _PATH_SHADOW "/etc/shadow"
|
|
||||||
#define _PATH_TERMCAP "/etc/termcap"
|
|
||||||
#define _PATH_USRLIB "/lib/"
|
#define _PATH_USRLIB "/lib/"
|
||||||
#define _PATH_CTIMED "/libexec/ctimed"
|
#define _PATH_CTIMED "/libexec/ctimed"
|
||||||
#define _PATH_LOCALLIB "/local/lib/"
|
#define _PATH_LOCALLIB "/local/lib/"
|
||||||
#define _PATH_SBIN "/sbin/"
|
#define _PATH_SBIN "/sbin/"
|
||||||
#define _PATH_USRSBIN "/sbin/"
|
#define _PATH_USRSBIN "/sbin/"
|
||||||
#define _PATH_MKPASSWD "/sbin/mkpasswd"
|
#define _PATH_SENDMAIL "/sbin/sendmail"
|
||||||
#define _PATH_SENDMAIL "/sbin/sendmail"
|
|
||||||
#define _PATH_SHARE "/share/"
|
#define _PATH_SHARE "/share/"
|
||||||
#define _PATH_ZONEINFO "/share/zoneinfo" /* Time zone object file directory */
|
#define _PATH_ZONEINFO "/share/zoneinfo" /* Time zone object file directory */
|
||||||
#define _PATH_TMP "/tmp/"
|
#define _PATH_TMP "/tmp/"
|
||||||
#define _PATH_USRTMP "/tmp/"
|
#define _PATH_USRTMP "/tmp/"
|
||||||
#define _PATH_LASTLOG "/var/log/lastlog"
|
#define _PATH_LASTLOG "/var/log/lastlog"
|
||||||
#define _PATH_MESSAGES "/var/log/messages"
|
#define _PATH_MESSAGES "/var/log/messages"
|
||||||
#define _PATH_WTMP "/var/log/wtmp"
|
#define _PATH_WTMP "/var/log/wtmp"
|
||||||
#define _PATH_MAIL "/var/mail/"
|
#define _PATH_MAIL "/var/mail/"
|
||||||
#define _PATH_VARRUN "/var/run/"
|
#define _PATH_VARRUN "/var/run/"
|
||||||
#define _PATH_DEVDB "/var/run/dev"
|
#define _PATH_DEVDB "/var/run/dev"
|
||||||
#define _PATH_UTMP "/var/run/utmp"
|
#define _PATH_UTMP "/var/run/utmp"
|
||||||
#define _PATH_ARTMP "/tmp/ar.XXXXXX"
|
#define _PATH_ARTMP "/tmp/ar.XXXXXX"
|
||||||
#define _PATH_RANTMP "/tmp/ranlib.XXXXXX"
|
#define _PATH_RANTMP "/tmp/ranlib.XXXXXX"
|
||||||
|
|
||||||
#define _PATH_STDPATH "/bin"
|
#define _PATH_STDPATH "/bin"
|
||||||
#define _PATH_SYSPATH "/bin:/sbin:/local"
|
#define _PATH_SYSPATH "/bin:/sbin:/local"
|
||||||
#define _PATH_MAN "/share/man:/local/man"
|
#define _PATH_MAN "/share/man:/local/man"
|
||||||
#define _PATH_LOCALMAN "/local/man"
|
#define _PATH_LOCALMAN "/local/man"
|
||||||
|
|
||||||
#define _PATH_HUSHLOGIN ".hushlogin"
|
#define _PATH_HUSHLOGIN ".hushlogin"
|
||||||
|
|||||||
229
include/pcc.h
Normal file
229
include/pcc.h
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1983 Regents of the University of California.
|
||||||
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
|
* specifies the terms and conditions for redistribution.
|
||||||
|
*
|
||||||
|
* @(#)pcc.h 5.1 (Berkeley) 5/30/85
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file contains definitions for all the constants and structures
|
||||||
|
* needed to use the intermediate code files generated and read by
|
||||||
|
* the Portable C Compiler and related compilers.
|
||||||
|
*
|
||||||
|
* Rules for changing this code:
|
||||||
|
* 1) All op values must be integer constants -- this permits us to run
|
||||||
|
* a 'sed' script on this file to create %term declarations for yacc.
|
||||||
|
* 2) Because the PCC uses fancy ASG and UNARY macros, assignment
|
||||||
|
* operators must have values 1 greater than corresponding normal
|
||||||
|
* operators, and unary operators must have values 2 greater ditto.
|
||||||
|
* 3) Ops used only by f1 must have values >= 150 (PCCF_FORTOPS).
|
||||||
|
* 4) Other language-dependent ops must have values >= 200.
|
||||||
|
*/
|
||||||
|
|
||||||
|
# ifndef PCC_TOKENS
|
||||||
|
|
||||||
|
# define PCC_TOKENS 0
|
||||||
|
|
||||||
|
# define PCC_ERROR 1 /* an error node */
|
||||||
|
# define PCC_FREE 2 /* an unused node */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Constants.
|
||||||
|
*/
|
||||||
|
# define PCC_STRING 3 /* a string constant */
|
||||||
|
# define PCC_ICON 4 /* an integer constant */
|
||||||
|
# define PCC_FCON 5 /* a floating point constant */
|
||||||
|
# define PCC_DCON 6 /* a double precision f.p. constant */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Leaf types.
|
||||||
|
*/
|
||||||
|
# define PCC_NAME 7 /* an identifier */
|
||||||
|
# define PCC_REG 8 /* a register */
|
||||||
|
# define PCC_OREG 9 /* register and offset */
|
||||||
|
# define PCC_CCODES 10 /* condition codes */
|
||||||
|
# define PCC_FLD 11 /* a bit field */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Arithmetic operators.
|
||||||
|
*/
|
||||||
|
# define PCC_PLUS 12 /* + */
|
||||||
|
# define PCC_PLUSEQ 13 /* += */
|
||||||
|
# define PCC_UPLUS 14 /* unary + (for completeness) */
|
||||||
|
# define PCC_MINUS 15 /* - */
|
||||||
|
# define PCC_MINUSEQ 16 /* -= */
|
||||||
|
# define PCC_UMINUS 17 /* unary - */
|
||||||
|
# define PCC_MUL 18 /* * */
|
||||||
|
# define PCC_MULEQ 19 /* *= */
|
||||||
|
/* Reserve a slot for 'unary *', which is PCC jargon for PCC_DEREF (yech) */
|
||||||
|
# define PCC_DIV 21 /* / */
|
||||||
|
# define PCC_DIVEQ 22 /* /= */
|
||||||
|
# define PCC_MOD 23 /* % */
|
||||||
|
# define PCC_MODEQ 24 /* %= */
|
||||||
|
# define PCC_INCR 25 /* ++ */
|
||||||
|
# define PCC_DECR 26 /* -- */
|
||||||
|
# define PCC_ASSIGN 27 /* = (these last 3 are stretching it) */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Bit operators.
|
||||||
|
*/
|
||||||
|
# define PCC_AND 28 /* & */
|
||||||
|
# define PCC_ANDEQ 29 /* &= */
|
||||||
|
/* Reserve a slot for 'unary &', jargon for PCC_ADDROF */
|
||||||
|
# define PCC_OR 31 /* | */
|
||||||
|
# define PCC_OREQ 32 /* |= */
|
||||||
|
# define PCC_ER 33 /* ^ */
|
||||||
|
# define PCC_EREQ 34 /* ^= */
|
||||||
|
# define PCC_LS 35 /* << */
|
||||||
|
# define PCC_LSEQ 36 /* <<= */
|
||||||
|
# define PCC_RS 37 /* >> */
|
||||||
|
# define PCC_RSEQ 38 /* >>= */
|
||||||
|
# define PCC_COMPL 39 /* ~ */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Booleans.
|
||||||
|
*/
|
||||||
|
# define PCC_EQ 40 /* == */
|
||||||
|
# define PCC_NE 41 /* != */
|
||||||
|
# define PCC_LE 42 /* <= */
|
||||||
|
# define PCC_LT 43 /* < */
|
||||||
|
# define PCC_GE 44 /* >= */
|
||||||
|
# define PCC_GT 45 /* > */
|
||||||
|
# define PCC_ULE 46 /* unsigned <= */
|
||||||
|
# define PCC_ULT 47 /* unsigned < */
|
||||||
|
# define PCC_UGE 48 /* unsigned >= */
|
||||||
|
# define PCC_UGT 49 /* unsigned > */
|
||||||
|
# define PCC_QUEST 50 /* ? (for conditional expressions) */
|
||||||
|
# define PCC_COLON 51 /* : (for conditional expressions) */
|
||||||
|
# define PCC_ANDAND 52 /* && */
|
||||||
|
# define PCC_OROR 53 /* || */
|
||||||
|
# define PCC_NOT 54 /* ! */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Function calls.
|
||||||
|
*/
|
||||||
|
# define PCC_CALL 55 /* call by value */
|
||||||
|
/* no ASG */
|
||||||
|
# define PCC_UCALL 57 /* call with no arguments */
|
||||||
|
# define PCC_FORTCALL 58 /* call by reference? */
|
||||||
|
/* no ASG */
|
||||||
|
# define PCC_UFORTCALL 60 /* ??? */
|
||||||
|
# ifdef INLINE
|
||||||
|
# define PCC_INLINE 61 /* inline function */
|
||||||
|
/* no ASG */
|
||||||
|
# define PCC_UINLINE 63 /* inline with no arguments */
|
||||||
|
# endif INLINE
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Referencing and dereferencing.
|
||||||
|
*/
|
||||||
|
# define PCC_DEREF 20 /* * */
|
||||||
|
# define PCC_ADDROF 30 /* & */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Special structure operators.
|
||||||
|
*/
|
||||||
|
# define PCC_DOT 64 /* . */
|
||||||
|
# define PCC_STREF 65 /* -> */
|
||||||
|
# define PCC_STASG 66 /* structure assignment */
|
||||||
|
# define PCC_STARG 67 /* an argument of type structure */
|
||||||
|
# define PCC_STCALL 68 /* a function of type structure */
|
||||||
|
/* no ASG */
|
||||||
|
# define PCC_USTCALL 70 /* unary structure function */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Conversions.
|
||||||
|
*/
|
||||||
|
# define PCC_SCONV 71 /* scalar conversion */
|
||||||
|
# define PCC_PCONV 72 /* pointer conversion */
|
||||||
|
# define PCC_PMCONV 73 /* pointer multiply conversion */
|
||||||
|
# define PCC_PVCONV 74 /* pointer divide conversion */
|
||||||
|
# define PCC_CAST 75 /* redundant? */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Bracket types.
|
||||||
|
*/
|
||||||
|
# define PCC_LB 76 /* [ */
|
||||||
|
# define PCC_RB 77 /* ] */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Comma nodes.
|
||||||
|
*/
|
||||||
|
# define PCC_COMOP 78 /* , (in expressions) */
|
||||||
|
# define PCC_CM 79 /* , (in argument lists) */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Miscellaneous.
|
||||||
|
*/
|
||||||
|
# define PCC_FORCE 80 /* result of last expression goes in r0 */
|
||||||
|
# define PCC_GOTO 81 /* unconditional goto */
|
||||||
|
# define PCC_CBRANCH 82 /* goto label if !test */
|
||||||
|
# define PCC_RETURN 83 /* return from function */
|
||||||
|
# define PCC_INIT 84 /* initialized data */
|
||||||
|
# define PCC_TYPE 85 /* a type */
|
||||||
|
# define PCC_CLASS 86 /* a storage class */
|
||||||
|
|
||||||
|
# define PCC_MAXOP 86 /* highest numbered PCC op */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Special codes for interfacing to /lib/f1.
|
||||||
|
*/
|
||||||
|
# define PCCF_FORTOPS 150
|
||||||
|
# define PCCF_FTEXT 150 /* pass literal assembler text */
|
||||||
|
# define PCCF_FEXPR 151 /* a statement */
|
||||||
|
# define PCCF_FSWITCH 152 /* not implemented */
|
||||||
|
# define PCCF_FLBRAC 153 /* beginning of subroutine */
|
||||||
|
# define PCCF_FRBRAC 154 /* end of subroutine */
|
||||||
|
# define PCCF_FEOF 155 /* end of file */
|
||||||
|
# define PCCF_FARIF 156 /* not implemented */
|
||||||
|
# define PCCF_FLABEL 157 /* an f77 label */
|
||||||
|
|
||||||
|
# endif PCC_TOKENS
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Types, as encoded in intermediate file cookies.
|
||||||
|
*/
|
||||||
|
# define PCCT_UNDEF 0
|
||||||
|
# define PCCT_FARG 1 /* function argument */
|
||||||
|
# define PCCT_CHAR 2
|
||||||
|
# define PCCT_SHORT 3
|
||||||
|
# define PCCT_INT 4
|
||||||
|
# define PCCT_LONG 5
|
||||||
|
# define PCCT_FLOAT 6
|
||||||
|
# define PCCT_DOUBLE 7
|
||||||
|
# define PCCT_STRTY 8
|
||||||
|
# define PCCT_UNIONTY 9
|
||||||
|
# define PCCT_ENUMTY 10
|
||||||
|
# define PCCT_MOETY 11 /* member of enum */
|
||||||
|
# define PCCT_UCHAR 12
|
||||||
|
# define PCCT_USHORT 13
|
||||||
|
# define PCCT_UNSIGNED 14
|
||||||
|
# define PCCT_ULONG 15
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Type modifiers.
|
||||||
|
*/
|
||||||
|
# define PCCTM_PTR 020
|
||||||
|
# define PCCTM_FTN 040
|
||||||
|
# define PCCTM_ARY 060
|
||||||
|
# define PCCTM_BASETYPE 017
|
||||||
|
# define PCCTM_TYPESHIFT 2
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Useful macros. 'PCCOM' macros apply to ops.
|
||||||
|
*/
|
||||||
|
# define PCCOM_ASG 1+
|
||||||
|
# define PCCOM_UNARY 2+
|
||||||
|
# define PCCOM_NOASG (-1)+
|
||||||
|
# define PCCOM_NOUNARY (-2)+
|
||||||
|
|
||||||
|
# define PCCM_TRIPLE(op, var, type) \
|
||||||
|
((op) | ((var) << 8) | (long) (type) << 16)
|
||||||
|
# define PCCM_TEXT(s) \
|
||||||
|
PCCM_TRIPLE(PCCF_FTEXT, (strlen(s) + 3) / 4, 0)
|
||||||
|
# define PCCM_ADDTYPE(t, m) \
|
||||||
|
((((t) &~ PCCTM_BASETYPE) << PCCTM_TYPESHIFT) | \
|
||||||
|
(m) | ((t) & PCCTM_BASETYPE))
|
||||||
@@ -14,27 +14,27 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct psout {
|
struct psout {
|
||||||
dev_t o_ttyd; /* u_ttyd */
|
dev_t o_ttyd; /* u_ttyd */
|
||||||
int o_flag; /* p_flag */
|
int o_flag; /* p_flag */
|
||||||
short o_pid; /* p_pid */
|
short o_pid; /* p_pid */
|
||||||
char o_tty[3]; /* 1st 2 chars of tty after 'tty' */
|
char o_tty[3]; /* 1st 2 chars of tty after 'tty' */
|
||||||
char o_stat; /* p_stat */
|
char o_stat; /* p_stat */
|
||||||
short o_uid; /* p_uid */
|
short o_uid; /* p_uid */
|
||||||
char o_uname[UT_NAMESIZE]; /* login name of process owner */
|
char o_uname[UT_NAMESIZE]; /* login name of process owner */
|
||||||
short o_ppid; /* p_ppid */
|
short o_ppid; /* p_ppid */
|
||||||
char o_cpu; /* p_cpu */
|
char o_cpu; /* p_cpu */
|
||||||
char o_pri; /* p_pri */
|
char o_pri; /* p_pri */
|
||||||
char o_nice; /* p_nice */
|
char o_nice; /* p_nice */
|
||||||
short o_addr0; /* p_addr[0] */
|
short o_addr0; /* p_addr[0] */
|
||||||
short o_size; /* p_size */
|
short o_size; /* p_size */
|
||||||
caddr_t o_wchan; /* p_wchan */
|
caddr_t o_wchan; /* p_wchan */
|
||||||
time_t o_utime; /* u_utime */
|
time_t o_utime; /* u_utime */
|
||||||
time_t o_stime; /* u_stime */
|
time_t o_stime; /* u_stime */
|
||||||
time_t o_cutime; /* u_cutime */
|
time_t o_cutime; /* u_cutime */
|
||||||
time_t o_cstime; /* u_cstime */
|
time_t o_cstime; /* u_cstime */
|
||||||
short o_pgrp; /* p_pgrp */
|
short o_pgrp; /* p_pgrp */
|
||||||
int o_sigs; /* sum of SIGINT & SIGQUIT,
|
int o_sigs; /* sum of SIGINT & SIGQUIT,
|
||||||
* if == 2 proc is ignoring both.*/
|
if == 2 proc is ignoring both.*/
|
||||||
char o_comm[MAXCOMLEN+1]; /* u_comm */
|
char o_comm[MAXCOMLEN+1]; /* u_comm */
|
||||||
char o_args[64]; /* best guess at args to process */
|
char o_args[64]; /* best guess at args to process */
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -15,17 +15,22 @@
|
|||||||
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define _PW_KEYBYNAME '0'
|
#define _PATH_PASSWD "/etc/passwd"
|
||||||
#define _PW_KEYBYUID '1'
|
#define _PATH_SHADOW "/etc/shadow"
|
||||||
|
#define _PATH_MKPASSWD "/sbin/mkpasswd"
|
||||||
|
#define _PATH_PTMP "/etc/ptmp"
|
||||||
|
|
||||||
|
#define _PW_KEYBYNAME '0'
|
||||||
|
#define _PW_KEYBYUID '1'
|
||||||
|
|
||||||
struct passwd {
|
struct passwd {
|
||||||
char *pw_name; /* user name */
|
char *pw_name; /* user name */
|
||||||
char *pw_passwd; /* encrypted password */
|
char *pw_passwd; /* encrypted password */
|
||||||
int pw_uid; /* user uid */
|
int pw_uid; /* user uid */
|
||||||
int pw_gid; /* user gid */
|
int pw_gid; /* user gid */
|
||||||
char *pw_gecos; /* real name */
|
char *pw_gecos; /* real name */
|
||||||
char *pw_dir; /* home directory */
|
char *pw_dir; /* home directory */
|
||||||
char *pw_shell; /* default shell */
|
char *pw_shell; /* default shell */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct passwd *getpwent(), *getpwuid(), *getpwnam();
|
struct passwd *getpwent(), *getpwuid(), *getpwnam();
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -32,15 +32,15 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _RANLIB_H_
|
#ifndef _RANLIB_H_
|
||||||
#define _RANLIB_H_
|
#define _RANLIB_H_
|
||||||
|
|
||||||
#define RANLIBMAG "__.SYMDEF" /* archive file name */
|
#define RANLIBMAG "__.SYMDEF" /* archive file name */
|
||||||
#define RANLIBSKEW 3 /* creation time offset */
|
#define RANLIBSKEW 3 /* creation time offset */
|
||||||
|
|
||||||
struct ranlib {
|
struct ranlib {
|
||||||
int ran_len; /* 1 byte - name length in bytes */
|
int ran_len; /* 1 byte - name length in bytes */
|
||||||
unsigned ran_off; /* 4 bytes - file offset */
|
unsigned ran_off; /* 4 bytes - file offset */
|
||||||
char *ran_name; /* in memory symbol name */
|
char *ran_name; /* in memory symbol name */
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* !_RANLIB_H_ */
|
#endif /* !_RANLIB_H_ */
|
||||||
|
|||||||
@@ -5,15 +5,14 @@
|
|||||||
* not the System V one.
|
* not the System V one.
|
||||||
*/
|
*/
|
||||||
#define NSUBEXP 10
|
#define NSUBEXP 10
|
||||||
|
|
||||||
typedef struct regexp {
|
typedef struct regexp {
|
||||||
char *startp[NSUBEXP];
|
char *startp[NSUBEXP];
|
||||||
char *endp[NSUBEXP];
|
char *endp[NSUBEXP];
|
||||||
char regstart; /* Internal use only. */
|
char regstart; /* Internal use only. */
|
||||||
char reganch; /* Internal use only. */
|
char reganch; /* Internal use only. */
|
||||||
char *regmust; /* Internal use only. */
|
char *regmust; /* Internal use only. */
|
||||||
int regmlen; /* Internal use only. */
|
int regmlen; /* Internal use only. */
|
||||||
char program[1]; /* Unwarranted chumminess with compiler. */
|
char program[1]; /* Unwarranted chumminess with compiler. */
|
||||||
} regexp;
|
} regexp;
|
||||||
|
|
||||||
extern regexp *regcomp();
|
extern regexp *regcomp();
|
||||||
|
|||||||
@@ -10,105 +10,105 @@ extern int LINES, COLS;
|
|||||||
/*
|
/*
|
||||||
* pseudo functions for standard screen
|
* pseudo functions for standard screen
|
||||||
*/
|
*/
|
||||||
#define addch(ch) waddch(stdscr, ch)
|
#define addch(ch) waddch(stdscr, ch)
|
||||||
#define getch() wgetch(stdscr)
|
#define getch() wgetch(stdscr)
|
||||||
#define addstr(str) waddstr(stdscr, str)
|
#define addstr(str) waddstr(stdscr, str)
|
||||||
#define getstr(str) wgetstr(stdscr, str)
|
#define getstr(str) wgetstr(stdscr, str)
|
||||||
#define move(y, x) wmove(stdscr, y, x)
|
#define move(y, x) wmove(stdscr, y, x)
|
||||||
#define clear() wclear(stdscr)
|
#define clear() wclear(stdscr)
|
||||||
#define erase() werase(stdscr)
|
#define erase() werase(stdscr)
|
||||||
#define clrtobot() wclrtobot(stdscr)
|
#define clrtobot() wclrtobot(stdscr)
|
||||||
#define clrtoeol() wclrtoeol(stdscr)
|
#define clrtoeol() wclrtoeol(stdscr)
|
||||||
#define insertln() winsertln(stdscr)
|
#define insertln() winsertln(stdscr)
|
||||||
#define deleteln() wdeleteln(stdscr)
|
#define deleteln() wdeleteln(stdscr)
|
||||||
#define refresh() wrefresh(stdscr)
|
#define refresh() wrefresh(stdscr)
|
||||||
#define inch() winch(stdscr)
|
#define inch() winch(stdscr)
|
||||||
#define insch(c) winsch(stdscr,c)
|
#define insch(c) winsch(stdscr,c)
|
||||||
#define delch() wdelch(stdscr)
|
#define delch() wdelch(stdscr)
|
||||||
#define standout() wstandout(stdscr)
|
#define standout() wstandout(stdscr)
|
||||||
#define standend() wstandend(stdscr)
|
#define standend() wstandend(stdscr)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* mv functions
|
* mv functions
|
||||||
*/
|
*/
|
||||||
#define mvwaddch(win,y,x,ch) wmove(win,y,x) == 0 ? 0 : waddch(win,ch)
|
#define mvwaddch(win,y,x,ch) wmove(win,y,x) == 0 ? 0 : waddch(win,ch)
|
||||||
#define mvwgetch(win,y,x) wmove(win,y,x) == 0 ? 0 : wgetch(win)
|
#define mvwgetch(win,y,x) wmove(win,y,x) == 0 ? 0 : wgetch(win)
|
||||||
#define mvwaddstr(win,y,x,str) wmove(win,y,x) == 0 ? 0 : waddstr(win,str)
|
#define mvwaddstr(win,y,x,str) wmove(win,y,x) == 0 ? 0 : waddstr(win,str)
|
||||||
#define mvwgetstr(win,y,x,str) wmove(win,y,x) == 0 ? 0 : wgetstr(win,str)
|
#define mvwgetstr(win,y,x,str) wmove(win,y,x) == 0 ? 0 : wgetstr(win,str)
|
||||||
#define mvwinch(win,y,x) wmove(win,y,x) == 0 ? 0 : winch(win)
|
#define mvwinch(win,y,x) wmove(win,y,x) == 0 ? 0 : winch(win)
|
||||||
#define mvwdelch(win,y,x) wmove(win,y,x) == 0 ? 0 : wdelch(win)
|
#define mvwdelch(win,y,x) wmove(win,y,x) == 0 ? 0 : wdelch(win)
|
||||||
#define mvwinsch(win,y,x,c) wmove(win,y,x) == 0 ? 0 : winsch(win,c)
|
#define mvwinsch(win,y,x,c) wmove(win,y,x) == 0 ? 0 : winsch(win,c)
|
||||||
#define mvaddch(y,x,ch) mvwaddch(stdscr,y,x,ch)
|
#define mvaddch(y,x,ch) mvwaddch(stdscr,y,x,ch)
|
||||||
#define mvgetch(y,x) mvwgetch(stdscr,y,x)
|
#define mvgetch(y,x) mvwgetch(stdscr,y,x)
|
||||||
#define mvaddstr(y,x,str) mvwaddstr(stdscr,y,x,str)
|
#define mvaddstr(y,x,str) mvwaddstr(stdscr,y,x,str)
|
||||||
#define mvgetstr(y,x,str) mvwgetstr(stdscr,y,x,str)
|
#define mvgetstr(y,x,str) mvwgetstr(stdscr,y,x,str)
|
||||||
#define mvinch(y,x) mvwinch(stdscr,y,x)
|
#define mvinch(y,x) mvwinch(stdscr,y,x)
|
||||||
#define mvdelch(y,x) mvwdelch(stdscr,y,x)
|
#define mvdelch(y,x) mvwdelch(stdscr,y,x)
|
||||||
#define mvinsch(y,x,c) mvwinsch(stdscr,y,x,c)
|
#define mvinsch(y,x,c) mvwinsch(stdscr,y,x,c)
|
||||||
|
|
||||||
#ifdef TODO
|
#ifdef TODO
|
||||||
|
|
||||||
#define TRUE (1)
|
#define TRUE (1)
|
||||||
#define FALSE (0)
|
#define FALSE (0)
|
||||||
#define ERR (0)
|
#define ERR (0)
|
||||||
#define OK (1)
|
#define OK (1)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Capabilities from termcap
|
* Capabilities from termcap
|
||||||
*/
|
*/
|
||||||
extern int AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
|
extern int AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
|
||||||
XB, XN, XT, XS, XX;
|
XB, XN, XT, XS, XX;
|
||||||
extern char *AL, *BC, *BT, *CD, *CE, *CL, *CM, *CR, *CS, *DC, *DL,
|
extern char *AL, *BC, *BT, *CD, *CE, *CL, *CM, *CR, *CS, *DC, *DL,
|
||||||
*DM, *DO, *ED, *EI, *K0, *K1, *K2, *K3, *K4, *K5, *K6,
|
*DM, *DO, *ED, *EI, *K0, *K1, *K2, *K3, *K4, *K5, *K6,
|
||||||
*K7, *K8, *K9, *HO, *IC, *IM, *IP, *KD, *KE, *KH, *KL,
|
*K7, *K8, *K9, *HO, *IC, *IM, *IP, *KD, *KE, *KH, *KL,
|
||||||
*KR, *KS, *KU, *LL, *MA, *ND, *NL, *RC, *SC, *SE, *SF,
|
*KR, *KS, *KU, *LL, *MA, *ND, *NL, *RC, *SC, *SE, *SF,
|
||||||
*SO, *SR, *TA, *TE, *TI, *UC, *UE, *UP, *US, *VB, *VS,
|
*SO, *SR, *TA, *TE, *TI, *UC, *UE, *UP, *US, *VB, *VS,
|
||||||
*VE, *AL_PARM, *DL_PARM, *UP_PARM, *DOWN_PARM,
|
*VE, *AL_PARM, *DL_PARM, *UP_PARM, *DOWN_PARM,
|
||||||
*LEFT_PARM, *RIGHT_PARM;
|
*LEFT_PARM, *RIGHT_PARM;
|
||||||
extern char PC;
|
extern char PC;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* From the tty modes...
|
* From the tty modes...
|
||||||
*/
|
*/
|
||||||
extern int GT, NONL, UPPERCASE, normtty, _pfast;
|
extern int GT, NONL, UPPERCASE, normtty, _pfast;
|
||||||
|
|
||||||
extern int My_term, _echoit, _rawmode, _endwin;
|
extern int My_term, _echoit, _rawmode, _endwin;
|
||||||
|
|
||||||
extern char *Def_term, ttytype[];
|
extern char *Def_term, ttytype[];
|
||||||
|
|
||||||
extern int _tty_ch, _res_flg;
|
extern int _tty_ch, _res_flg;
|
||||||
|
|
||||||
extern SGTTY _tty;
|
extern SGTTY _tty;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* pseudo functions
|
* pseudo functions
|
||||||
*/
|
*/
|
||||||
#define clearok(win,bf) (win->_clear = bf)
|
#define clearok(win,bf) (win->_clear = bf)
|
||||||
#define leaveok(win,bf) (win->_leave = bf)
|
#define leaveok(win,bf) (win->_leave = bf)
|
||||||
#define scrollok(win,bf) (win->_scroll = bf)
|
#define scrollok(win,bf) (win->_scroll = bf)
|
||||||
#define flushok(win,bf) (bf ? (win->_flags |= _FLUSH):(win->_flags &= ~_FLUSH))
|
#define flushok(win,bf) (bf ? (win->_flags |= _FLUSH):(win->_flags &= ~_FLUSH))
|
||||||
#define getyx(win,y,x) y = win->_cury, x = win->_curx
|
#define getyx(win,y,x) y = win->_cury, x = win->_curx
|
||||||
#define winch(win) (win->_y[win->_cury][win->_curx] & 0177)
|
#define winch(win) (win->_y[win->_cury][win->_curx] & 0177)
|
||||||
|
|
||||||
#define raw() (_tty.sg_flags|=RAW, _pfast=_rawmode=TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define raw() (_tty.sg_flags|=RAW, _pfast=_rawmode=TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
#define noraw() (_tty.sg_flags&=~RAW,_rawmode=FALSE,_pfast=!(_tty.sg_flags&CRMOD),ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define noraw() (_tty.sg_flags&=~RAW,_rawmode=FALSE,_pfast=!(_tty.sg_flags&CRMOD),ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
#define cbreak() (_tty.sg_flags |= CBREAK, _rawmode = TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define cbreak() (_tty.sg_flags |= CBREAK, _rawmode = TRUE, ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
#define nocbreak() (_tty.sg_flags &= ~CBREAK,_rawmode=FALSE,ioctl(_tty_ch,TIOCSETP,&_tty))
|
#define nocbreak() (_tty.sg_flags &= ~CBREAK,_rawmode=FALSE,ioctl(_tty_ch,TIOCSETP,&_tty))
|
||||||
#define echo() (_tty.sg_flags |= ECHO, _echoit = TRUE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
#define echo() (_tty.sg_flags |= ECHO, _echoit = TRUE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
#define noecho() (_tty.sg_flags &= ~ECHO, _echoit = FALSE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
#define noecho() (_tty.sg_flags &= ~ECHO, _echoit = FALSE, ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
#define nl() (_tty.sg_flags |= CRMOD, _pfast = _rawmode,ioctl(_tty_ch, TIOCSETP, &_tty))
|
#define nl() (_tty.sg_flags |= CRMOD, _pfast = _rawmode,ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
#define nonl() (_tty.sg_flags &= ~CRMOD,_pfast = TRUE, ioctl(_tty_ch, TIOCSETP,&_tty))
|
#define nonl() (_tty.sg_flags &= ~CRMOD,_pfast = TRUE, ioctl(_tty_ch, TIOCSETP,&_tty))
|
||||||
#define savetty() ((void) ioctl(_tty_ch, TIOCGETP, &_tty), _res_flg = _tty.sg_flags)
|
#define savetty() ((void) ioctl(_tty_ch, TIOCGETP, &_tty), _res_flg = _tty.sg_flags)
|
||||||
#define resetty() (_tty.sg_flags = _res_flg, (void) ioctl(_tty_ch, TIOCSETP, &_tty))
|
#define resetty() (_tty.sg_flags = _res_flg, (void) ioctl(_tty_ch, TIOCSETP, &_tty))
|
||||||
|
|
||||||
#define erasechar() (_tty.sg_erase)
|
#define erasechar() (_tty.sg_erase)
|
||||||
#define killchar() (_tty.sg_kill)
|
#define killchar() (_tty.sg_kill)
|
||||||
#define baudrate() (_tty.sg_ospeed)
|
#define baudrate() (_tty.sg_ospeed)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Used to be in unctrl.h.
|
* Used to be in unctrl.h.
|
||||||
*/
|
*/
|
||||||
#define unctrl(c) _unctrl[(c) & 0177]
|
#define unctrl(c) _unctrl[(c) & 0177]
|
||||||
extern char *_unctrl[];
|
extern char *_unctrl[];
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||
|
|
||||||
/* open-only flags */
|
/* open-only flags */
|
||||||
#define O_RDONLY 0x0000 /* open for reading only */
|
#define O_RDONLY 0x0000 /* open for reading only */
|
||||||
#define O_WRONLY 0x0001 /* open for writing only */
|
#define O_WRONLY 0x0001 /* open for writing only */
|
||||||
#define O_RDWR 0x0002 /* open for reading and writing */
|
#define O_RDWR 0x0002 /* open for reading and writing */
|
||||||
#define O_ACCMODE 0x0003 /* mask for above modes */
|
#define O_ACCMODE 0x0003 /* mask for above modes */
|
||||||
|
|
||||||
#define O_NONBLOCK 0x0004 /* no delay */
|
#define O_NONBLOCK 0x0004 /* no delay */
|
||||||
#define O_APPEND 0x0008 /* set append mode */
|
#define O_APPEND 0x0008 /* set append mode */
|
||||||
#define O_SHLOCK 0x0010 /* open with shared file lock */
|
#define O_SHLOCK 0x0010 /* open with shared file lock */
|
||||||
#define O_EXLOCK 0x0020 /* open with exclusive file lock */
|
#define O_EXLOCK 0x0020 /* open with exclusive file lock */
|
||||||
#define O_ASYNC 0x0040 /* signal pgrp when data ready */
|
#define O_ASYNC 0x0040 /* signal pgrp when data ready */
|
||||||
#define O_FSYNC 0x0080 /* synchronous writes */
|
#define O_FSYNC 0x0080 /* synchronous writes */
|
||||||
#define O_CREAT 0x0200 /* create if nonexistant */
|
#define O_CREAT 0x0200 /* create if nonexistant */
|
||||||
#define O_TRUNC 0x0400 /* truncate to zero length */
|
#define O_TRUNC 0x0400 /* truncate to zero length */
|
||||||
#define O_EXCL 0x0800 /* error if already exists */
|
#define O_EXCL 0x0800 /* error if already exists */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Constants used for fcntl(2)
|
* Constants used for fcntl(2)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* command values */
|
/* command values */
|
||||||
#define F_DUPFD 0 /* duplicate file descriptor */
|
#define F_DUPFD 0 /* duplicate file descriptor */
|
||||||
#define F_GETFD 1 /* get file descriptor flags */
|
#define F_GETFD 1 /* get file descriptor flags */
|
||||||
#define F_SETFD 2 /* set file descriptor flags */
|
#define F_SETFD 2 /* set file descriptor flags */
|
||||||
#define F_GETFL 3 /* get file status flags */
|
#define F_GETFL 3 /* get file status flags */
|
||||||
#define F_SETFL 4 /* set file status flags */
|
#define F_SETFL 4 /* set file status flags */
|
||||||
#define F_GETOWN 5 /* get SIGIO/SIGURG proc/pgrp */
|
#define F_GETOWN 5 /* get SIGIO/SIGURG proc/pgrp */
|
||||||
#define F_SETOWN 6 /* set SIGIO/SIGURG proc/pgrp */
|
#define F_SETOWN 6 /* set SIGIO/SIGURG proc/pgrp */
|
||||||
|
|
||||||
/* file descriptor flags (F_GETFD, F_SETFD) */
|
/* file descriptor flags (F_GETFD, F_SETFD) */
|
||||||
#define FD_CLOEXEC 1 /* close-on-exec flag */
|
#define FD_CLOEXEC 1 /* close-on-exec flag */
|
||||||
|
|
||||||
/* lock operations for flock() */
|
/* lock operations for flock() */
|
||||||
#define LOCK_SH 1 /* shared file lock */
|
#define LOCK_SH 1 /* shared file lock */
|
||||||
#define LOCK_EX 2 /* exclusive file lock */
|
#define LOCK_EX 2 /* exclusive file lock */
|
||||||
#define LOCK_NB 4 /* don't block when locking */
|
#define LOCK_NB 4 /* don't block when locking */
|
||||||
#define LOCK_UN 8 /* unlock file */
|
#define LOCK_UN 8 /* unlock file */
|
||||||
|
|||||||
@@ -3,74 +3,74 @@
|
|||||||
* All rights reserved. The Berkeley software License Agreement
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
* specifies the terms and conditions for redistribution.
|
* specifies the terms and conditions for redistribution.
|
||||||
*/
|
*/
|
||||||
#ifndef NSIG
|
#ifndef NSIG
|
||||||
|
|
||||||
#define NSIG 32
|
#define NSIG 32
|
||||||
|
|
||||||
#define SIGHUP 1 /* hangup */
|
#define SIGHUP 1 /* hangup */
|
||||||
#define SIGINT 2 /* interrupt */
|
#define SIGINT 2 /* interrupt */
|
||||||
#define SIGQUIT 3 /* quit */
|
#define SIGQUIT 3 /* quit */
|
||||||
#define SIGILL 4 /* illegal instruction (not reset when caught) */
|
#define SIGILL 4 /* illegal instruction (not reset when caught) */
|
||||||
#define SIGTRAP 5 /* trace trap (not reset when caught) */
|
#define SIGTRAP 5 /* trace trap (not reset when caught) */
|
||||||
#define SIGIOT 6 /* IOT instruction */
|
#define SIGIOT 6 /* IOT instruction */
|
||||||
#define SIGABRT SIGIOT /* compatibility */
|
#define SIGABRT SIGIOT /* compatibility */
|
||||||
#define SIGEMT 7 /* EMT instruction */
|
#define SIGEMT 7 /* EMT instruction */
|
||||||
#define SIGFPE 8 /* floating point exception */
|
#define SIGFPE 8 /* floating point exception */
|
||||||
#define SIGKILL 9 /* kill (cannot be caught or ignored) */
|
#define SIGKILL 9 /* kill (cannot be caught or ignored) */
|
||||||
#define SIGBUS 10 /* bus error */
|
#define SIGBUS 10 /* bus error */
|
||||||
#define SIGSEGV 11 /* segmentation violation */
|
#define SIGSEGV 11 /* segmentation violation */
|
||||||
#define SIGSYS 12 /* bad argument to system call */
|
#define SIGSYS 12 /* bad argument to system call */
|
||||||
#define SIGPIPE 13 /* write on a pipe with no one to read it */
|
#define SIGPIPE 13 /* write on a pipe with no one to read it */
|
||||||
#define SIGALRM 14 /* alarm clock */
|
#define SIGALRM 14 /* alarm clock */
|
||||||
#define SIGTERM 15 /* software termination signal from kill */
|
#define SIGTERM 15 /* software termination signal from kill */
|
||||||
#define SIGURG 16 /* urgent condition on IO channel */
|
#define SIGURG 16 /* urgent condition on IO channel */
|
||||||
#define SIGSTOP 17 /* sendable stop signal not from tty */
|
#define SIGSTOP 17 /* sendable stop signal not from tty */
|
||||||
#define SIGTSTP 18 /* stop signal from tty */
|
#define SIGTSTP 18 /* stop signal from tty */
|
||||||
#define SIGCONT 19 /* continue a stopped process */
|
#define SIGCONT 19 /* continue a stopped process */
|
||||||
#define SIGCHLD 20 /* to parent on child stop or exit */
|
#define SIGCHLD 20 /* to parent on child stop or exit */
|
||||||
#define SIGCLD SIGCHLD /* compatibility */
|
#define SIGCLD SIGCHLD /* compatibility */
|
||||||
#define SIGTTIN 21 /* to readers pgrp upon background tty read */
|
#define SIGTTIN 21 /* to readers pgrp upon background tty read */
|
||||||
#define SIGTTOU 22 /* like TTIN for output if (tp->t_local<OSTOP) */
|
#define SIGTTOU 22 /* like TTIN for output if (tp->t_local<OSTOP) */
|
||||||
#define SIGIO 23 /* input/output possible signal */
|
#define SIGIO 23 /* input/output possible signal */
|
||||||
#define SIGXCPU 24 /* exceeded CPU time limit */
|
#define SIGXCPU 24 /* exceeded CPU time limit */
|
||||||
#define SIGXFSZ 25 /* exceeded file size limit */
|
#define SIGXFSZ 25 /* exceeded file size limit */
|
||||||
#define SIGVTALRM 26 /* virtual time alarm */
|
#define SIGVTALRM 26 /* virtual time alarm */
|
||||||
#define SIGPROF 27 /* profiling time alarm */
|
#define SIGPROF 27 /* profiling time alarm */
|
||||||
#define SIGWINCH 28 /* window size changes */
|
#define SIGWINCH 28 /* window size changes */
|
||||||
#define SIGUSR1 30 /* user defined signal 1 */
|
#define SIGUSR1 30 /* user defined signal 1 */
|
||||||
#define SIGUSR2 31 /* user defined signal 2 */
|
#define SIGUSR2 31 /* user defined signal 2 */
|
||||||
|
|
||||||
#define SIG_ERR -1
|
#define SIG_ERR -1
|
||||||
#define SIG_DFL 0
|
#define SIG_DFL 0
|
||||||
#define SIG_IGN 1
|
#define SIG_IGN 1
|
||||||
#define BADSIG SIG_ERR
|
#define BADSIG SIG_ERR
|
||||||
|
|
||||||
#define SA_ONSTACK 0x0001 /* take signal on signal stack */
|
#define SA_ONSTACK 0x0001 /* take signal on signal stack */
|
||||||
#define SA_RESTART 0x0002 /* restart system on signal return */
|
#define SA_RESTART 0x0002 /* restart system on signal return */
|
||||||
#define SA_DISABLE 0x0004 /* disable taking signals on alternate stack */
|
#define SA_DISABLE 0x0004 /* disable taking signals on alternate stack */
|
||||||
#define SA_NOCLDSTOP 0x0008 /* do not generate SIGCHLD on child stop */
|
#define SA_NOCLDSTOP 0x0008 /* do not generate SIGCHLD on child stop */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flags for sigprocmask:
|
* Flags for sigprocmask:
|
||||||
*/
|
*/
|
||||||
#define SIG_BLOCK 1 /* block specified signal set */
|
#define SIG_BLOCK 1 /* block specified signal set */
|
||||||
#define SIG_UNBLOCK 2 /* unblock specified signal set */
|
#define SIG_UNBLOCK 2 /* unblock specified signal set */
|
||||||
#define SIG_SETMASK 3 /* set specified signal set */
|
#define SIG_SETMASK 3 /* set specified signal set */
|
||||||
|
|
||||||
#define MINSIGSTKSZ 128 /* minimum allowable stack */
|
#define MINSIGSTKSZ 128 /* minimum allowable stack */
|
||||||
#define SIGSTKSZ (MINSIGSTKSZ + 384) /* recommended stack size */
|
#define SIGSTKSZ (MINSIGSTKSZ + 384) /* recommended stack size */
|
||||||
|
|
||||||
#define SV_ONSTACK SA_ONSTACK /* take signal on signal stack */
|
#define SV_ONSTACK SA_ONSTACK /* take signal on signal stack */
|
||||||
#define SV_INTERRUPT SA_RESTART /* same bit, opposite sense */
|
#define SV_INTERRUPT SA_RESTART /* same bit, opposite sense */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Macro for converting signal number to a mask suitable for
|
* Macro for converting signal number to a mask suitable for
|
||||||
* sigblock().
|
* sigblock().
|
||||||
*/
|
*/
|
||||||
#define sigmask(m) (1L << ((m)-1))
|
#define sigmask(m) (1L << ((m)-1))
|
||||||
#define sigaddset(set, signo) (*(set) |= 1L << ((signo) - 1), 0)
|
#define sigaddset(set, signo) (*(set) |= 1L << ((signo) - 1), 0)
|
||||||
#define sigdelset(set, signo) (*(set) &= ~(1L << ((signo) - 1)), 0)
|
#define sigdelset(set, signo) (*(set) &= ~(1L << ((signo) - 1)), 0)
|
||||||
#define sigemptyset(set) (*(set) = (sigset_t)0, (int)0)
|
#define sigemptyset(set) (*(set) = (sigset_t)0, (int)0)
|
||||||
#define sigfillset(set) (*(set) = ~(sigset_t)0, (int)0)
|
#define sigfillset(set) (*(set) = ~(sigset_t)0, (int)0)
|
||||||
#define sigismember(set, signo) ((*(set) & (1L << ((signo) - 1))) != 0)
|
#define sigismember(set, signo) ((*(set) & (1L << ((signo) - 1))) != 0)
|
||||||
|
|
||||||
|
|||||||
@@ -1,24 +1,24 @@
|
|||||||
/*
|
/*
|
||||||
* SmallC: interface to stdio library.
|
* SmallC: interface to stdio library.
|
||||||
*/
|
*/
|
||||||
#define BUFSIZ 1024
|
#define BUFSIZ 1024
|
||||||
|
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
#define NULL 0
|
#define NULL 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define FILE int
|
#define FILE int
|
||||||
#define EOF (-1)
|
#define EOF (-1)
|
||||||
|
|
||||||
extern int _iob[];
|
extern int _iob[];
|
||||||
|
|
||||||
#define stdin (&_iob[0])
|
#define stdin (&_iob[0])
|
||||||
#define stdout (&_iob[5])
|
#define stdout (&_iob[5])
|
||||||
#define stderr (&_iob[10])
|
#define stderr (&_iob[10])
|
||||||
|
|
||||||
#define SEEK_SET 0 /* set file offset to offset */
|
#define SEEK_SET 0 /* set file offset to offset */
|
||||||
#define SEEK_CUR 1 /* set file offset to current plus offset */
|
#define SEEK_CUR 1 /* set file offset to current plus offset */
|
||||||
#define SEEK_END 2 /* set file offset to EOF plus offset */
|
#define SEEK_END 2 /* set file offset to EOF plus offset */
|
||||||
|
|
||||||
#define getc fgetc
|
#define getc fgetc
|
||||||
#define putc fputc
|
#define putc fputc
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
/*
|
/*
|
||||||
* Ioctl definitions for GPIO driver.
|
* Ioctl definitions for GPIO driver.
|
||||||
*/
|
*/
|
||||||
#define GPIO_PORT(n) (n) /* port number */
|
#define GPIO_PORT(n) (n) /* port number */
|
||||||
#define GPIO_PORTA 0
|
#define GPIO_PORTA 0
|
||||||
#define GPIO_PORTB 1
|
#define GPIO_PORTB 1
|
||||||
#define GPIO_PORTC 2
|
#define GPIO_PORTC 2
|
||||||
#define GPIO_PORTD 3
|
#define GPIO_PORTD 3
|
||||||
#define GPIO_PORTE 4
|
#define GPIO_PORTE 4
|
||||||
#define GPIO_PORTF 5
|
#define GPIO_PORTF 5
|
||||||
#define GPIO_PORTG 6
|
#define GPIO_PORTG 6
|
||||||
|
|
||||||
#define GPIO_CONFIN 0x20016700 /* configure as input */
|
#define GPIO_CONFIN 0x20016700 /* configure as input */
|
||||||
#define GPIO_CONFOUT 0x20026700 /* configure as output */
|
#define GPIO_CONFOUT 0x20026700 /* configure as output */
|
||||||
#define GPIO_CONFOD 0x20046700 /* configure as open drain */
|
#define GPIO_CONFOD 0x20046700 /* configure as open drain */
|
||||||
#define GPIO_DECONF 0x20086700 /* deconfigure */
|
#define GPIO_DECONF 0x20086700 /* deconfigure */
|
||||||
#define GPIO_STORE 0x20106700 /* store all outputs */
|
#define GPIO_STORE 0x20106700 /* store all outputs */
|
||||||
#define GPIO_SET 0x20206700 /* set to 1 by mask */
|
#define GPIO_SET 0x20206700 /* set to 1 by mask */
|
||||||
#define GPIO_CLEAR 0x20406700 /* set to 0 by mask */
|
#define GPIO_CLEAR 0x20406700 /* set to 0 by mask */
|
||||||
#define GPIO_INVERT 0x20806700 /* invert by mask */
|
#define GPIO_INVERT 0x20806700 /* invert by mask */
|
||||||
#define GPIO_POLL 0x21006700 /* poll */
|
#define GPIO_POLL 0x21006700 /* poll */
|
||||||
#define GPIO_LOL 0x82006700 /* display lol picture */
|
#define GPIO_LOL 0x82006700 /* display lol picture */
|
||||||
|
|||||||
42
include/stab.h
Normal file
42
include/stab.h
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1980 Regents of the University of California.
|
||||||
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
|
* specifies the terms and conditions for redistribution.
|
||||||
|
*
|
||||||
|
* @(#)stab.h 5.1 (Berkeley) 5/30/85
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* IF YOU ADD DEFINITIONS, ADD THEM TO nm.c as well */
|
||||||
|
/*
|
||||||
|
* This file gives definitions supplementing <a.out.h>
|
||||||
|
* for permanent symbol table entries.
|
||||||
|
* These must have one of the N_STAB bits on,
|
||||||
|
* and are subject to relocation according to the masks in <a.out.h>.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* for symbolic debugger, sdb(1):
|
||||||
|
*/
|
||||||
|
#define N_GSYM 0x20 /* global symbol: name,,0,type,0 */
|
||||||
|
#define N_FNAME 0x22 /* procedure name (f77 kludge): name,,0 */
|
||||||
|
#define N_FUN 0x24 /* procedure: name,,0,linenumber,address */
|
||||||
|
#define N_STSYM 0x26 /* static symbol: name,,0,type,address */
|
||||||
|
#define N_LCSYM 0x28 /* .lcomm symbol: name,,0,type,address */
|
||||||
|
#define N_RSYM 0x40 /* register sym: name,,0,type,register */
|
||||||
|
#define N_SLINE 0x44 /* src line: 0,,0,linenumber,address */
|
||||||
|
#define N_SSYM 0x60 /* structure elt: name,,0,type,struct_offset */
|
||||||
|
#define N_SO 0x64 /* source file name: name,,0,0,address */
|
||||||
|
#define N_LSYM 0x80 /* local sym: name,,0,type,offset */
|
||||||
|
#define N_SOL 0x84 /* #included file name: name,,0,0,address */
|
||||||
|
#define N_PSYM 0xa0 /* parameter: name,,0,type,offset */
|
||||||
|
#define N_ENTRY 0xa4 /* alternate entry: name,linenumber,address */
|
||||||
|
#define N_LBRAC 0xc0 /* left bracket: 0,,0,nesting level,address */
|
||||||
|
#define N_RBRAC 0xe0 /* right bracket: 0,,0,nesting level,address */
|
||||||
|
#define N_BCOMM 0xe2 /* begin common: name,, */
|
||||||
|
#define N_ECOMM 0xe4 /* end common: name,, */
|
||||||
|
#define N_ECOML 0xe8 /* end common (local name): ,,address */
|
||||||
|
#define N_LENG 0xfe /* second stab entry with length information */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* for the berkeley pascal compiler, pc(1):
|
||||||
|
*/
|
||||||
|
#define N_PC 0x30 /* global pascal symbol: name,,0,subtype,line */
|
||||||
@@ -4,49 +4,32 @@
|
|||||||
#ifndef _STDARG_H
|
#ifndef _STDARG_H
|
||||||
#define _STDARG_H
|
#define _STDARG_H
|
||||||
|
|
||||||
/*
|
/* Define __gnuc_va_list. */
|
||||||
* Define va_start, va_arg, va_end, va_copy.
|
|
||||||
*/
|
|
||||||
#if defined(__GNUC__) /* Gnu C */
|
|
||||||
# define va_start(ap, last) __builtin_va_start((ap), last)
|
|
||||||
# define va_arg(ap, type) __builtin_va_arg((ap), type)
|
|
||||||
# define va_end(ap) __builtin_va_end((ap))
|
|
||||||
# define va_copy(dest, src) __builtin_va_copy((dest), (src))
|
|
||||||
|
|
||||||
#elif defined(__PCC__) /* PCC */
|
|
||||||
# define va_start(ap, last) __builtin_stdarg_start((ap), last)
|
|
||||||
# define va_arg(ap, type) __builtin_va_arg((ap), type)
|
|
||||||
# define va_end(ap) __builtin_va_end((ap))
|
|
||||||
# define va_copy(dest, src) __builtin_va_copy((dest), (src))
|
|
||||||
|
|
||||||
#else /* SmallerC, LCC */
|
#ifdef __GNUC__
|
||||||
# define va_start(ap, last) (ap = ((char*)&(last) + \
|
# ifndef __GNUC_VA_LIST
|
||||||
(((sizeof(last) + sizeof(int) - 1) / sizeof(int)) * sizeof(int))))
|
# define __GNUC_VA_LIST
|
||||||
# define va_arg(ap, type) ((type*)(ap += \
|
typedef __builtin_va_list __gnuc_va_list;
|
||||||
sizeof(type) == sizeof(int) ? sizeof(type) : \
|
# endif
|
||||||
(-(int)(ap) & (sizeof(type) - 1)) + sizeof(type)))[-1]
|
# define va_start(ap, last) __builtin_va_start((ap), last)
|
||||||
# define va_end(ap)
|
|
||||||
# define va_copy(dest, src) (dest = (src))
|
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef __PCC__
|
||||||
|
# define va_start(ap, last) __builtin_stdarg_start((ap), last)
|
||||||
|
#endif
|
||||||
|
#define va_arg(ap, type) __builtin_va_arg((ap), type)
|
||||||
|
#define va_end(ap) __builtin_va_end((ap))
|
||||||
|
#define va_copy(dest, src) __builtin_va_copy((dest), (src))
|
||||||
|
|
||||||
/*
|
|
||||||
* Define va_list.
|
#ifndef _VA_LIST
|
||||||
*/
|
#define _VA_LIST
|
||||||
#ifndef _VA_LIST_T
|
#ifdef __GNUC__
|
||||||
# define _VA_LIST_T
|
|
||||||
# if defined(__GNUC__) || defined(__PCC__)
|
|
||||||
typedef __builtin_va_list va_list;
|
typedef __builtin_va_list va_list;
|
||||||
# else
|
|
||||||
typedef char *va_list;
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef __SMALLER_C__
|
||||||
/*
|
typedef int *va_list;
|
||||||
* Define __gnuc_va_list.
|
#endif
|
||||||
*/
|
|
||||||
#if defined(__GNUC__) && !defined(__GNUC_VA_LIST)
|
|
||||||
# define __GNUC_VA_LIST
|
|
||||||
typedef __builtin_va_list __gnuc_va_list;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* not _STDARG_H */
|
#endif /* not _STDARG_H */
|
||||||
|
|||||||
@@ -1,22 +1,8 @@
|
|||||||
#ifndef _STDDEF_H_
|
|
||||||
#define _STDDEF_H_
|
|
||||||
|
|
||||||
typedef int ptrdiff_t;
|
|
||||||
|
|
||||||
#ifndef _SIZE_T
|
|
||||||
#define _SIZE_T
|
|
||||||
typedef unsigned size_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef NULL
|
|
||||||
#define NULL 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Offset of member MEMBER in a struct of type TYPE. */
|
/* Offset of member MEMBER in a struct of type TYPE. */
|
||||||
|
|
||||||
#if defined(__GNUC__) && __GNUC__ > 3
|
#if defined(__GNUC__) && __GNUC__ > 3
|
||||||
#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|
#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|
||||||
#else
|
#else
|
||||||
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE*)0)->MEMBER)
|
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE*)0)->MEMBER)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _STDDEF_H_ */
|
|
||||||
|
|||||||
@@ -2,12 +2,14 @@
|
|||||||
#ifndef _STDINT_H
|
#ifndef _STDINT_H
|
||||||
#define _STDINT_H
|
#define _STDINT_H
|
||||||
|
|
||||||
typedef signed char int8_t;
|
typedef signed char int8_t;
|
||||||
typedef short int int16_t;
|
typedef short int int16_t;
|
||||||
typedef int int32_t;
|
typedef int int32_t;
|
||||||
|
|
||||||
|
typedef unsigned char uint8_t;
|
||||||
|
typedef unsigned short int uint16_t;
|
||||||
|
typedef unsigned int uint32_t;
|
||||||
|
|
||||||
typedef unsigned char uint8_t;
|
|
||||||
typedef unsigned short int uint16_t;
|
|
||||||
typedef unsigned int uint32_t;
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
160
include/stdio.h
160
include/stdio.h
@@ -5,25 +5,27 @@
|
|||||||
*/
|
*/
|
||||||
#ifndef FILE
|
#ifndef FILE
|
||||||
|
|
||||||
#define BUFSIZ 1024
|
#include <sys/types.h>
|
||||||
extern struct _iobuf {
|
|
||||||
int _cnt;
|
#define BUFSIZ 1024
|
||||||
char *_ptr; /* should be unsigned char */
|
extern struct _iobuf {
|
||||||
char *_base; /* ditto */
|
int _cnt;
|
||||||
int _bufsiz;
|
char *_ptr; /* should be unsigned char */
|
||||||
short _flag;
|
char *_base; /* ditto */
|
||||||
short _file;
|
int _bufsiz;
|
||||||
|
short _flag;
|
||||||
|
short _file;
|
||||||
} _iob[];
|
} _iob[];
|
||||||
|
|
||||||
#define _IOREAD 01
|
#define _IOREAD 01
|
||||||
#define _IOWRT 02
|
#define _IOWRT 02
|
||||||
#define _IONBF 04
|
#define _IONBF 04
|
||||||
#define _IOMYBUF 010
|
#define _IOMYBUF 010
|
||||||
#define _IOEOF 020
|
#define _IOEOF 020
|
||||||
#define _IOERR 040
|
#define _IOERR 040
|
||||||
#define _IOSTRG 0100
|
#define _IOSTRG 0100
|
||||||
#define _IOLBF 0200
|
#define _IOLBF 0200
|
||||||
#define _IORW 0400
|
#define _IORW 0400
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following definition is for ANSI C, which took them
|
* The following definition is for ANSI C, which took them
|
||||||
@@ -31,63 +33,58 @@ extern struct _iobuf {
|
|||||||
* made them official arguments to setvbuf(), without renaming them.
|
* made them official arguments to setvbuf(), without renaming them.
|
||||||
* Hence, these ugly _IOxxx names are *supposed* to appear in user code.
|
* Hence, these ugly _IOxxx names are *supposed* to appear in user code.
|
||||||
*/
|
*/
|
||||||
#define _IOFBF 0 /* setvbuf should set fully buffered */
|
#define _IOFBF 0 /* setvbuf should set fully buffered */
|
||||||
/* _IONBF and _IOLBF are used from the flags above */
|
/* _IONBF and _IOLBF are used from the flags above */
|
||||||
|
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
#define NULL 0
|
#define NULL 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _SIZE_T
|
#define FILE struct _iobuf
|
||||||
#define _SIZE_T
|
#define EOF (-1)
|
||||||
typedef unsigned size_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define FILE struct _iobuf
|
#define stdin (&_iob[0])
|
||||||
#define EOF (-1)
|
#define stdout (&_iob[1])
|
||||||
|
#define stderr (&_iob[2])
|
||||||
|
|
||||||
#define stdin (&_iob[0])
|
#define SEEK_SET 0 /* set file offset to offset */
|
||||||
#define stdout (&_iob[1])
|
#define SEEK_CUR 1 /* set file offset to current plus offset */
|
||||||
#define stderr (&_iob[2])
|
#define SEEK_END 2 /* set file offset to EOF plus offset */
|
||||||
|
|
||||||
#define SEEK_SET 0 /* set file offset to offset */
|
|
||||||
#define SEEK_CUR 1 /* set file offset to current plus offset */
|
|
||||||
#define SEEK_END 2 /* set file offset to EOF plus offset */
|
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
#define getc(p) (--(p)->_cnt>=0? (int)(*(unsigned char *)(p)->_ptr++):_filbuf(p))
|
#define getc(p) (--(p)->_cnt>=0? (int)(*(unsigned char *)(p)->_ptr++):_filbuf(p))
|
||||||
#define putc(x, p) (--(p)->_cnt >= 0 ?\
|
#define putc(x, p) (--(p)->_cnt >= 0 ?\
|
||||||
(int)(*(unsigned char *)(p)->_ptr++ = (x)) :\
|
(int)(*(unsigned char *)(p)->_ptr++ = (x)) :\
|
||||||
(((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\
|
(((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\
|
||||||
((*(p)->_ptr = (x)) != '\n' ?\
|
((*(p)->_ptr = (x)) != '\n' ?\
|
||||||
(int)(*(unsigned char *)(p)->_ptr++) :\
|
(int)(*(unsigned char *)(p)->_ptr++) :\
|
||||||
_flsbuf(*(unsigned char *)(p)->_ptr, p)) :\
|
_flsbuf(*(unsigned char *)(p)->_ptr, p)) :\
|
||||||
_flsbuf((unsigned char)(x), p)))
|
_flsbuf((unsigned char)(x), p)))
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#define getchar() getc(stdin)
|
#define getchar() getc(stdin)
|
||||||
#define putchar(x) putc(x,stdout)
|
#define putchar(x) putc(x,stdout)
|
||||||
#define feof(p) (((p)->_flag&_IOEOF)!=0)
|
#define feof(p) (((p)->_flag&_IOEOF)!=0)
|
||||||
#define ferror(p) (((p)->_flag&_IOERR)!=0)
|
#define ferror(p) (((p)->_flag&_IOERR)!=0)
|
||||||
#define fileno(p) ((p)->_file)
|
#define fileno(p) ((p)->_file)
|
||||||
#define clearerr(p) ((p)->_flag &= ~(_IOERR|_IOEOF))
|
#define clearerr(p) ((p)->_flag &= ~(_IOERR|_IOEOF))
|
||||||
|
|
||||||
FILE *fopen (const char *, const char *);
|
FILE *fopen (const char *, const char *);
|
||||||
FILE *fdopen (int, const char *);
|
FILE *fdopen (int, const char *);
|
||||||
FILE *freopen (const char *, const char *, FILE *);
|
FILE *freopen (const char *, const char *, FILE *);
|
||||||
FILE *popen (const char *, const char *);
|
FILE *popen (const char *, const char *);
|
||||||
FILE *tmpfile (void);
|
FILE *tmpfile (void);
|
||||||
int fclose (FILE *);
|
int fclose (FILE *);
|
||||||
long ftell (FILE *);
|
long ftell (FILE *);
|
||||||
int fflush (FILE *);
|
int fflush (FILE *);
|
||||||
int fgetc (FILE *);
|
int fgetc (FILE *);
|
||||||
int ungetc (int, FILE *);
|
int ungetc (int, FILE *);
|
||||||
int fputc (int, FILE *);
|
int fputc (int, FILE *);
|
||||||
int fputs (const char *, FILE *);
|
int fputs (const char *, FILE *);
|
||||||
int puts (const char *);
|
int puts (const char *);
|
||||||
char *fgets (char *, int, FILE *);
|
char *fgets (char *, int, FILE *);
|
||||||
char *gets (char *);
|
char *gets (char *);
|
||||||
FILE *_findiop (void);
|
FILE *_findiop (void);
|
||||||
int _filbuf (FILE *);
|
int _filbuf (FILE *);
|
||||||
int _flsbuf (unsigned char, FILE *);
|
int _flsbuf (unsigned char, FILE *);
|
||||||
void setbuf (FILE *, char *);
|
void setbuf (FILE *, char *);
|
||||||
@@ -100,41 +97,36 @@ int remove (const char *);
|
|||||||
int getw(FILE *stream);
|
int getw(FILE *stream);
|
||||||
int putw(int w, FILE *stream);
|
int putw(int w, FILE *stream);
|
||||||
|
|
||||||
size_t fread (void *, size_t, size_t, FILE *);
|
size_t fread (void *, size_t, size_t, FILE *);
|
||||||
size_t fwrite (const void *, size_t, size_t, FILE *);
|
size_t fwrite (const void *, size_t, size_t, FILE *);
|
||||||
|
|
||||||
int fprintf (FILE *, const char *, ...);
|
int fprintf (FILE *, const char *, ...);
|
||||||
int printf (const char *, ...);
|
int printf (const char *, ...);
|
||||||
int sprintf (char *, const char *, ...);
|
int sprintf (char *, const char *, ...);
|
||||||
int snprintf (char *, size_t, const char *, ...);
|
int snprintf (char *, size_t, const char *, ...);
|
||||||
|
|
||||||
int fscanf (FILE *, const char *, ...);
|
int fscanf (FILE *, const char *, ...);
|
||||||
int scanf (const char *, ...);
|
int scanf (const char *, ...);
|
||||||
int sscanf (const char *, const char *, ...);
|
int sscanf (const char *, const char *, ...);
|
||||||
|
|
||||||
#ifndef _VA_LIST_
|
#ifndef _VA_LIST_
|
||||||
# ifdef __GNUC__
|
#define va_list __builtin_va_list /* For GCC */
|
||||||
# define va_list __builtin_va_list /* For Gnu C */
|
|
||||||
# endif
|
|
||||||
# ifdef __SMALLER_C__
|
|
||||||
# define va_list char * /* For Smaller C */
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int vfprintf (FILE *, const char *, va_list);
|
int vfprintf (FILE *, const char *, va_list);
|
||||||
int vprintf (const char *, va_list);
|
int vprintf (const char *, va_list);
|
||||||
int vsprintf (char *, const char *, va_list);
|
int vsprintf (char *, const char *, va_list);
|
||||||
int vsnprintf (char *, size_t, const char *, va_list);
|
int vsnprintf (char *, size_t, const char *, va_list);
|
||||||
|
|
||||||
int vfscanf (FILE *, const char *, va_list);
|
int vfscanf (FILE *, const char *, va_list);
|
||||||
int vscanf (const char *, va_list);
|
int vscanf (const char *, va_list);
|
||||||
int vsscanf (const char *, const char *, va_list);
|
int vsscanf (const char *, const char *, va_list);
|
||||||
|
|
||||||
int _doprnt (const char *, va_list, FILE *);
|
int _doprnt (const char *, va_list, FILE *);
|
||||||
int _doscan (FILE *, const char *, va_list);
|
int _doscan (FILE *, const char *, va_list);
|
||||||
|
|
||||||
#ifndef _VA_LIST_
|
#ifndef _VA_LIST_
|
||||||
# undef va_list
|
#undef va_list
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void perror (const char *);
|
void perror (const char *);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1990, 1993
|
* Copyright (c) 1990, 1993
|
||||||
* The Regents of the University of California. All rights reserved.
|
* The Regents of the University of California. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@@ -12,8 +12,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* @(#)stdlib.h 8.3.2 (2.11BSD) 1996/1/12
|
* @(#)stdlib.h 8.3.2 (2.11BSD) 1996/1/12
|
||||||
*
|
*
|
||||||
* Adapted from the 4.4-Lite CD. The odds of a ANSI C compiler for 2.11BSD
|
* Adapted from the 4.4-Lite CD. The odds of a ANSI C compiler for 2.11BSD
|
||||||
* being slipped under the door are not distinguishable from 0 - so the
|
* being slipped under the door are not distinguishable from 0 - so the
|
||||||
@@ -43,63 +43,60 @@
|
|||||||
#ifndef _STDLIB_H_
|
#ifndef _STDLIB_H_
|
||||||
#define _STDLIB_H_
|
#define _STDLIB_H_
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
#define NULL 0
|
#define NULL 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define EXIT_FAILURE 1
|
#define EXIT_FAILURE 1
|
||||||
#define EXIT_SUCCESS 0
|
#define EXIT_SUCCESS 0
|
||||||
|
|
||||||
#define RAND_MAX 0x7fff
|
#define RAND_MAX 0x7fff
|
||||||
|
|
||||||
#ifndef _SIZE_T
|
void abort();
|
||||||
#define _SIZE_T
|
int abs (int);
|
||||||
typedef unsigned size_t;
|
int atexit (void (*)(void));
|
||||||
#endif
|
double atof();
|
||||||
|
int atoi();
|
||||||
void abort (void);
|
long atol();
|
||||||
int abs (int);
|
void *calloc (size_t, size_t);
|
||||||
int atexit (void (*)(void));
|
void exit (int);
|
||||||
int atoi (const char *);
|
void free (void *);
|
||||||
long atol (const char *);
|
char *getenv();
|
||||||
void *calloc (size_t, size_t);
|
|
||||||
void exit (int);
|
|
||||||
void free (void *);
|
|
||||||
char *getenv (const char *);
|
|
||||||
long labs (long);
|
long labs (long);
|
||||||
void *malloc (size_t);
|
void *malloc (size_t);
|
||||||
char *mktemp (char *);
|
char *mktemp (char *);
|
||||||
int mkstemp (char *);
|
int mkstemp (char *);
|
||||||
void qsort (void *, size_t, size_t, int (*)(const void *, const void *));
|
void qsort();
|
||||||
int rand (void);
|
int rand();
|
||||||
void *realloc (void*, size_t);
|
void *realloc (void*, size_t);
|
||||||
void srand (unsigned);
|
void srand();
|
||||||
long strtol (const char *, char **, int);
|
double strtod();
|
||||||
unsigned long strtoul (const char *, char **, int);
|
long strtol();
|
||||||
int system (const char *);
|
unsigned long strtoul();
|
||||||
|
int system();
|
||||||
|
|
||||||
int putenv (char *string);
|
int putenv (char *string);
|
||||||
int setenv (const char *name, const char *value, int overwrite);
|
int setenv (const char *name, const char *value, int overwrite);
|
||||||
int unsetenv (const char *name);
|
int unsetenv (const char *name);
|
||||||
char *_findenv (const char *name, int *offset);
|
char *_findenv (const char *name, int *offset);
|
||||||
|
|
||||||
void *alloca (size_t size);
|
void *alloca();
|
||||||
|
|
||||||
int daemon (int, int);
|
int daemon();
|
||||||
char *devname (int dev, int type);
|
char *devname();
|
||||||
int getloadavg (unsigned loadavg[], int nelem);
|
int getloadavg(unsigned loadavg[], int nelem);
|
||||||
|
|
||||||
extern char *suboptarg; /* getsubopt(3) external variable */
|
extern char *suboptarg; /* getsubopt(3) external variable */
|
||||||
int getsubopt (char **, char **, char **);
|
int getsubopt();
|
||||||
|
|
||||||
long random (void);
|
long random (void);
|
||||||
char *setstate (char *);
|
char *setstate (char *);
|
||||||
void srandom (unsigned);
|
void srandom (unsigned);
|
||||||
|
|
||||||
double atof (const char *);
|
char *ecvt (double, int, int *, int *);
|
||||||
double strtod (const char *, char **);
|
char *fcvt (double, int, int *, int *);
|
||||||
char *ecvt (double, int, int *, int *);
|
char *gcvt (double, int, char *);
|
||||||
char *fcvt (double, int, int *, int *);
|
|
||||||
char *gcvt (double, int, char *);
|
|
||||||
|
|
||||||
#endif /* _STDLIB_H_ */
|
#endif /* _STDLIB_H_ */
|
||||||
|
|||||||
@@ -3,44 +3,41 @@
|
|||||||
* All rights reserved. The Berkeley software License Agreement
|
* All rights reserved. The Berkeley software License Agreement
|
||||||
* specifies the terms and conditions for redistribution.
|
* specifies the terms and conditions for redistribution.
|
||||||
*/
|
*/
|
||||||
#ifndef NULL
|
#include <sys/types.h>
|
||||||
#define NULL 0
|
|
||||||
|
#ifndef NULL
|
||||||
|
#define NULL 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _SIZE_T
|
char *strcat (char *, const char *);
|
||||||
#define _SIZE_T
|
char *strncat (char *, const char *, size_t);
|
||||||
typedef unsigned size_t;
|
char *strcpy (char *, const char *);
|
||||||
#endif
|
char *strncpy (char *, const char *, size_t);
|
||||||
|
|
||||||
char *strcat (char *, const char *);
|
char *strstr (const char *, const char *);
|
||||||
char *strncat (char *, const char *, size_t);
|
|
||||||
char *strcpy (char *, const char *);
|
|
||||||
char *strncpy (char *, const char *, size_t);
|
|
||||||
|
|
||||||
char *strstr (const char *, const char *);
|
int strcmp (const char *, const char *);
|
||||||
|
int strncmp (const char *, const char *, size_t);
|
||||||
|
size_t strlen (const char *);
|
||||||
|
|
||||||
int strcmp (const char *, const char *);
|
int memcmp (const void *, const void *, size_t);
|
||||||
int strncmp (const char *, const char *, size_t);
|
|
||||||
size_t strlen (const char *);
|
|
||||||
|
|
||||||
int memcmp (const void *, const void *, size_t);
|
|
||||||
|
|
||||||
void *memmove (void *, const void *, size_t);
|
void *memmove (void *, const void *, size_t);
|
||||||
void *memccpy (void *, const void *, int, size_t);
|
void *memccpy (void *, const void *, int, size_t);
|
||||||
void *memchr (const void *, int, size_t);
|
void *memchr (const void *, int, size_t);
|
||||||
void *memcpy (void *, const void *, size_t);
|
void *memcpy (void *, const void *, size_t);
|
||||||
void *memset (void *, int, size_t);
|
void *memset (void *, int, size_t);
|
||||||
char *strchr (const char *, int);
|
char *strchr (const char *, int);
|
||||||
|
|
||||||
char *strdup (const char *);
|
char *strdup (const char *);
|
||||||
char *strpbrk (const char *, const char *);
|
char *strpbrk (const char *, const char *);
|
||||||
char *strrchr (const char *, int);
|
char *strrchr (const char *, int);
|
||||||
char *strsep (char **, const char *);
|
char *strsep (char **, const char *);
|
||||||
char *strtok (char *, const char *);
|
char *strtok (char *, const char *);
|
||||||
char *strtok_r (char *, const char *, char **);
|
char *strtok_r (char *, const char *, char **);
|
||||||
|
|
||||||
size_t strcspn (const char *, const char *);
|
size_t strcspn (const char *, const char *);
|
||||||
size_t strspn (const char *, const char *);
|
size_t strspn (const char *, const char *);
|
||||||
|
|
||||||
char *strerror (int);
|
char *strerror (int);
|
||||||
const char *syserrlst (int);
|
const char *syserrlst (int);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1990, 1993
|
* Copyright (c) 1990, 1993
|
||||||
* The Regents of the University of California. All rights reserved.
|
* The Regents of the University of California. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@@ -12,8 +12,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -30,10 +30,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
#ifndef _SIZE_T
|
#include <sys/types.h>
|
||||||
#define _SIZE_T
|
|
||||||
typedef unsigned size_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int bcmp(const void *, const void *, size_t);
|
int bcmp(const void *, const void *, size_t);
|
||||||
void bcopy(const void *, void *, size_t);
|
void bcopy(const void *, void *, size_t);
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
/* struct.h 4.1 83/05/03 */
|
/* struct.h 4.1 83/05/03 */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* access to information relating to the fields of a structure
|
* access to information relating to the fields of a structure
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define fldoff(str, fld) ((int)&(((struct str *)0)->fld))
|
#define fldoff(str, fld) ((int)&(((struct str *)0)->fld))
|
||||||
#define fldsiz(str, fld) (sizeof(((struct str *)0)->fld))
|
#define fldsiz(str, fld) (sizeof(((struct str *)0)->fld))
|
||||||
#define strbase(str, ptr, fld) ((struct str *)((char *)(ptr)-fldoff(str, fld)))
|
#define strbase(str, ptr, fld) ((struct str *)((char *)(ptr)-fldoff(str, fld)))
|
||||||
|
|||||||
@@ -9,168 +9,168 @@
|
|||||||
* causes cpp to leave a trailing tab when expanding macros in pdp/sys/SYS.h
|
* causes cpp to leave a trailing tab when expanding macros in pdp/sys/SYS.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define SYS_exit 1
|
#define SYS_exit 1
|
||||||
#define SYS_fork 2
|
#define SYS_fork 2
|
||||||
#define SYS_read 3
|
#define SYS_read 3
|
||||||
#define SYS_write 4
|
#define SYS_write 4
|
||||||
#define SYS_open 5
|
#define SYS_open 5
|
||||||
#define SYS_close 6
|
#define SYS_close 6
|
||||||
#define SYS_wait4 7
|
#define SYS_wait4 7
|
||||||
/* 8 is old; creat */
|
/* 8 is old; creat */
|
||||||
#define SYS_link 9
|
#define SYS_link 9
|
||||||
#define SYS_unlink 10
|
#define SYS_unlink 10
|
||||||
#define SYS_execv 11
|
#define SYS_execv 11
|
||||||
#define SYS_chdir 12
|
#define SYS_chdir 12
|
||||||
#define SYS_fchdir 13
|
#define SYS_fchdir 13
|
||||||
#define SYS_mknod 14
|
#define SYS_mknod 14
|
||||||
#define SYS_chmod 15
|
#define SYS_chmod 15
|
||||||
#define SYS_chown 16
|
#define SYS_chown 16
|
||||||
#define SYS_chflags 17
|
#define SYS_chflags 17
|
||||||
#define SYS_fchflags 18
|
#define SYS_fchflags 18
|
||||||
#define SYS_lseek 19
|
#define SYS_lseek 19
|
||||||
#define SYS_getpid 20
|
#define SYS_getpid 20
|
||||||
#define SYS_mount 21
|
#define SYS_mount 21
|
||||||
#define SYS_umount 22
|
#define SYS_umount 22
|
||||||
#define SYS___sysctl 23
|
#define SYS___sysctl 23
|
||||||
#define SYS_getuid 24
|
#define SYS_getuid 24
|
||||||
#define SYS_geteuid 25
|
#define SYS_geteuid 25
|
||||||
#define SYS_ptrace 26
|
#define SYS_ptrace 26
|
||||||
#define SYS_getppid 27
|
#define SYS_getppid 27
|
||||||
#define SYS_statfs 28
|
#define SYS_statfs 28
|
||||||
#define SYS_fstatfs 29
|
#define SYS_fstatfs 29
|
||||||
#define SYS_getfsstat 30
|
#define SYS_getfsstat 30
|
||||||
#define SYS_sigaction 31
|
#define SYS_sigaction 31
|
||||||
#define SYS_sigprocmask 32
|
#define SYS_sigprocmask 32
|
||||||
#define SYS_access 33
|
#define SYS_access 33
|
||||||
#define SYS_sigpending 34
|
#define SYS_sigpending 34
|
||||||
#define SYS_sigaltstack 35
|
#define SYS_sigaltstack 35
|
||||||
#define SYS_sync 36
|
#define SYS_sync 36
|
||||||
#define SYS_kill 37
|
#define SYS_kill 37
|
||||||
#define SYS_stat 38
|
#define SYS_stat 38
|
||||||
/* 39 was getlogin */
|
/* 39 was getlogin */
|
||||||
#define SYS_lstat 40
|
#define SYS_lstat 40
|
||||||
#define SYS_dup 41
|
#define SYS_dup 41
|
||||||
#define SYS_pipe 42
|
#define SYS_pipe 42
|
||||||
/* 43 was setlogin */
|
/* 43 was setlogin */
|
||||||
#define SYS_profil 44
|
#define SYS_profil 44
|
||||||
#define SYS_setuid 45
|
#define SYS_setuid 45
|
||||||
#define SYS_seteuid 46
|
#define SYS_seteuid 46
|
||||||
#define SYS_getgid 47
|
#define SYS_getgid 47
|
||||||
#define SYS_getegid 48
|
#define SYS_getegid 48
|
||||||
#define SYS_setgid 49
|
#define SYS_setgid 49
|
||||||
#define SYS_setegid 50
|
#define SYS_setegid 50
|
||||||
#define SYS_kmemdev 51
|
#define SYS_kmemdev 51
|
||||||
#define SYS_phys 52
|
#define SYS_phys 52
|
||||||
#define SYS_lock 53
|
#define SYS_lock 53
|
||||||
#define SYS_ioctl 54
|
#define SYS_ioctl 54
|
||||||
#define SYS_reboot 55
|
#define SYS_reboot 55
|
||||||
#define SYS_sigwait 56
|
#define SYS_sigwait 56
|
||||||
#define SYS_symlink 57
|
#define SYS_symlink 57
|
||||||
#define SYS_readlink 58
|
#define SYS_readlink 58
|
||||||
#define SYS_execve 59
|
#define SYS_execve 59
|
||||||
#define SYS_umask 60
|
#define SYS_umask 60
|
||||||
#define SYS_chroot 61
|
#define SYS_chroot 61
|
||||||
#define SYS_fstat 62
|
#define SYS_fstat 62
|
||||||
/* 63 is unused */
|
/* 63 is unused */
|
||||||
/* 64 is old; getpagesize */
|
/* 64 is old; getpagesize */
|
||||||
#define SYS_pselect 65
|
#define SYS_pselect 65
|
||||||
#define SYS_vfork 2 /* 66 - not fixed yet */
|
#define SYS_vfork 2 /* 66 - not fixed yet */
|
||||||
/* 67 is old; vread */
|
/* 67 is old; vread */
|
||||||
/* 68 is old; vwrite */
|
/* 68 is old; vwrite */
|
||||||
#define SYS_sbrk 69
|
#define SYS_sbrk 69
|
||||||
#define SYS_rdglob 70
|
#define SYS_rdglob 70
|
||||||
#define SYS_wrglob 71
|
#define SYS_wrglob 71
|
||||||
/* 71 is unused 4.3: mmap */
|
/* 71 is unused 4.3: mmap */
|
||||||
#define SYS_msec 72 /* 72 is unused 4.3: vadvise */
|
#define SYS_msec 72 /* 72 is unused 4.3: vadvise */
|
||||||
/* 73 is unused 4.3: munmap */
|
/* 73 is unused 4.3: munmap */
|
||||||
/* 74 is unused 4.3: mprotect */
|
/* 74 is unused 4.3: mprotect */
|
||||||
/* 75 is unused 4.3: madvise */
|
/* 75 is unused 4.3: madvise */
|
||||||
#define SYS_vhangup 76
|
#define SYS_vhangup 76
|
||||||
/* 77 is old; vlimit */
|
/* 77 is old; vlimit */
|
||||||
/* 78 is unused 4.3: mincore */
|
/* 78 is unused 4.3: mincore */
|
||||||
#define SYS_getgroups 79
|
#define SYS_getgroups 79
|
||||||
#define SYS_setgroups 80
|
#define SYS_setgroups 80
|
||||||
#define SYS_getpgrp 81
|
#define SYS_getpgrp 81
|
||||||
#define SYS_setpgrp 82
|
#define SYS_setpgrp 82
|
||||||
#define SYS_setitimer 83
|
#define SYS_setitimer 83
|
||||||
/* 84 is old; wait,wait3 */
|
/* 84 is old; wait,wait3 */
|
||||||
#define SYS_swapon 85
|
#define SYS_swapon 85
|
||||||
#define SYS_getitimer 86
|
#define SYS_getitimer 86
|
||||||
/* 87 is old; gethostname */
|
/* 87 is old; gethostname */
|
||||||
/* 88 is old; sethostname */
|
/* 88 is old; sethostname */
|
||||||
#define SYS_getdtablesize 89
|
#define SYS_getdtablesize 89
|
||||||
#define SYS_dup2 90
|
#define SYS_dup2 90
|
||||||
/* 91 is unused 4.3: getdopt */
|
/* 91 is unused 4.3: getdopt */
|
||||||
#define SYS_fcntl 92
|
#define SYS_fcntl 92
|
||||||
#define SYS_select 93
|
#define SYS_select 93
|
||||||
/* 94 is unused 4.3: setdopt */
|
/* 94 is unused 4.3: setdopt */
|
||||||
#define SYS_fsync 95
|
#define SYS_fsync 95
|
||||||
#define SYS_setpriority 96
|
#define SYS_setpriority 96
|
||||||
#define SYS_socket 97
|
#define SYS_socket 97
|
||||||
#define SYS_connect 98
|
#define SYS_connect 98
|
||||||
#define SYS_accept 99
|
#define SYS_accept 99
|
||||||
#define SYS_getpriority 100
|
#define SYS_getpriority 100
|
||||||
#define SYS_send 101
|
#define SYS_send 101
|
||||||
#define SYS_recv 102
|
#define SYS_recv 102
|
||||||
#define SYS_sigreturn 103
|
#define SYS_sigreturn 103
|
||||||
#define SYS_bind 104
|
#define SYS_bind 104
|
||||||
#define SYS_setsockopt 105
|
#define SYS_setsockopt 105
|
||||||
#define SYS_listen 106
|
#define SYS_listen 106
|
||||||
#define SYS_sigsuspend 107
|
#define SYS_sigsuspend 107
|
||||||
/*
|
/*
|
||||||
* 108 thru 112 are 4.3BSD compatibility syscalls. sigstack has to remain
|
* 108 thru 112 are 4.3BSD compatibility syscalls. sigstack has to remain
|
||||||
* defined because no replacement routine exists. Sigh.
|
* defined because no replacement routine exists. Sigh.
|
||||||
*/
|
*/
|
||||||
/* 108 is old; sigvec */
|
/* 108 is old; sigvec */
|
||||||
/* 109 is old; sigblock */
|
/* 109 is old; sigblock */
|
||||||
/* 110 is old; sigsetmask */
|
/* 110 is old; sigsetmask */
|
||||||
/* 111 is old; sigpause */
|
/* 111 is old; sigpause */
|
||||||
#define SYS_sigstack 112
|
#define SYS_sigstack 112
|
||||||
|
|
||||||
#define SYS_recvmsg 113
|
#define SYS_recvmsg 113
|
||||||
#define SYS_sendmsg 114
|
#define SYS_sendmsg 114
|
||||||
/* 115 is old; vtrace */
|
/* 115 is old; vtrace */
|
||||||
#define SYS_gettimeofday 116
|
#define SYS_gettimeofday 116
|
||||||
#define SYS_getrusage 117
|
#define SYS_getrusage 117
|
||||||
#define SYS_getsockopt 118
|
#define SYS_getsockopt 118
|
||||||
/* 119 is old; resuba */
|
/* 119 is old; resuba */
|
||||||
#define SYS_readv 120
|
#define SYS_readv 120
|
||||||
#define SYS_writev 121
|
#define SYS_writev 121
|
||||||
#define SYS_settimeofday 122
|
#define SYS_settimeofday 122
|
||||||
#define SYS_fchown 123
|
#define SYS_fchown 123
|
||||||
#define SYS_fchmod 124
|
#define SYS_fchmod 124
|
||||||
#define SYS_recvfrom 125
|
#define SYS_recvfrom 125
|
||||||
/* 126 is old; setreuid */
|
/* 126 is old; setreuid */
|
||||||
/* 127 is old; setregid */
|
/* 127 is old; setregid */
|
||||||
#define SYS_rename 128
|
#define SYS_rename 128
|
||||||
#define SYS_truncate 129
|
#define SYS_truncate 129
|
||||||
#define SYS_ftruncate 130
|
#define SYS_ftruncate 130
|
||||||
#define SYS_flock 131
|
#define SYS_flock 131
|
||||||
/* 132 is unused */
|
/* 132 is unused */
|
||||||
#define SYS_sendto 133
|
#define SYS_sendto 133
|
||||||
#define SYS_shutdown 134
|
#define SYS_shutdown 134
|
||||||
#define SYS_socketpair 135
|
#define SYS_socketpair 135
|
||||||
#define SYS_mkdir 136
|
#define SYS_mkdir 136
|
||||||
#define SYS_rmdir 137
|
#define SYS_rmdir 137
|
||||||
#define SYS_utimes 138
|
#define SYS_utimes 138
|
||||||
/* 139 is unused */
|
/* 139 is unused */
|
||||||
#define SYS_adjtime 140
|
#define SYS_adjtime 140
|
||||||
#define SYS_getpeername 141
|
#define SYS_getpeername 141
|
||||||
/* 142 is old; gethostid */
|
/* 142 is old; gethostid */
|
||||||
/* 143 is old; sethostid */
|
/* 143 is old; sethostid */
|
||||||
#define SYS_getrlimit 144
|
#define SYS_getrlimit 144
|
||||||
#define SYS_setrlimit 145
|
#define SYS_setrlimit 145
|
||||||
#define SYS_killpg 146
|
#define SYS_killpg 146
|
||||||
/* 147 is unused */
|
/* 147 is unused */
|
||||||
#define SYS_setquota 148
|
#define SYS_setquota 148
|
||||||
#define SYS_quota 149
|
#define SYS_quota 149
|
||||||
#define SYS_getsockname 150
|
#define SYS_getsockname 150
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 2BSD special calls
|
* 2BSD special calls
|
||||||
*/
|
*/
|
||||||
/* 151 is unused */
|
/* 151 is unused */
|
||||||
#define SYS_ustore 152
|
#define SYS_ustore 152
|
||||||
#define SYS_ufetch 153
|
#define SYS_ufetch 153
|
||||||
#define SYS_ucall 154
|
#define SYS_ucall 154
|
||||||
/* 155 is unused */
|
/* 155 is unused */
|
||||||
|
|||||||
@@ -9,89 +9,89 @@
|
|||||||
* software without specific prior written permission. This software
|
* software without specific prior written permission. This software
|
||||||
* is provided ``as is'' without express or implied warranty.
|
* is provided ``as is'' without express or implied warranty.
|
||||||
*
|
*
|
||||||
* @(#)sysexits.h 4.4.1 (2.11BSD) 1996/11/29
|
* @(#)sysexits.h 4.4.1 (2.11BSD) 1996/11/29
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** SYSEXITS.H -- Exit status codes for system programs.
|
** SYSEXITS.H -- Exit status codes for system programs.
|
||||||
**
|
**
|
||||||
** This include file attempts to categorize possible error
|
** This include file attempts to categorize possible error
|
||||||
** exit statuses for system programs, notably delivermail
|
** exit statuses for system programs, notably delivermail
|
||||||
** and the Berkeley network.
|
** and the Berkeley network.
|
||||||
**
|
**
|
||||||
** Error numbers begin at EX__BASE to reduce the possibility of
|
** Error numbers begin at EX__BASE to reduce the possibility of
|
||||||
** clashing with other exit statuses that random programs may
|
** clashing with other exit statuses that random programs may
|
||||||
** already return. The meaning of the codes is approximately
|
** already return. The meaning of the codes is approximately
|
||||||
** as follows:
|
** as follows:
|
||||||
**
|
**
|
||||||
** EX_USAGE -- The command was used incorrectly, e.g., with
|
** EX_USAGE -- The command was used incorrectly, e.g., with
|
||||||
** the wrong number of arguments, a bad flag, a bad
|
** the wrong number of arguments, a bad flag, a bad
|
||||||
** syntax in a parameter, or whatever.
|
** syntax in a parameter, or whatever.
|
||||||
** EX_DATAERR -- The input data was incorrect in some way.
|
** EX_DATAERR -- The input data was incorrect in some way.
|
||||||
** This should only be used for user's data & not
|
** This should only be used for user's data & not
|
||||||
** system files.
|
** system files.
|
||||||
** EX_NOINPUT -- An input file (not a system file) did not
|
** EX_NOINPUT -- An input file (not a system file) did not
|
||||||
** exist or was not readable. This could also include
|
** exist or was not readable. This could also include
|
||||||
** errors like "No message" to a mailer (if it cared
|
** errors like "No message" to a mailer (if it cared
|
||||||
** to catch it).
|
** to catch it).
|
||||||
** EX_NOUSER -- The user specified did not exist. This might
|
** EX_NOUSER -- The user specified did not exist. This might
|
||||||
** be used for mail addresses or remote logins.
|
** be used for mail addresses or remote logins.
|
||||||
** EX_NOHOST -- The host specified did not exist. This is used
|
** EX_NOHOST -- The host specified did not exist. This is used
|
||||||
** in mail addresses or network requests.
|
** in mail addresses or network requests.
|
||||||
** EX_UNAVAILABLE -- A service is unavailable. This can occur
|
** EX_UNAVAILABLE -- A service is unavailable. This can occur
|
||||||
** if a support program or file does not exist. This
|
** if a support program or file does not exist. This
|
||||||
** can also be used as a catchall message when something
|
** can also be used as a catchall message when something
|
||||||
** you wanted to do doesn't work, but you don't know
|
** you wanted to do doesn't work, but you don't know
|
||||||
** why.
|
** why.
|
||||||
** EX_SOFTWARE -- An internal software error has been detected.
|
** EX_SOFTWARE -- An internal software error has been detected.
|
||||||
** This should be limited to non-operating system related
|
** This should be limited to non-operating system related
|
||||||
** errors as possible.
|
** errors as possible.
|
||||||
** EX_OSERR -- An operating system error has been detected.
|
** EX_OSERR -- An operating system error has been detected.
|
||||||
** This is intended to be used for such things as "cannot
|
** This is intended to be used for such things as "cannot
|
||||||
** fork", "cannot create pipe", or the like. It includes
|
** fork", "cannot create pipe", or the like. It includes
|
||||||
** things like getuid returning a user that does not
|
** things like getuid returning a user that does not
|
||||||
** exist in the passwd file.
|
** exist in the passwd file.
|
||||||
** EX_OSFILE -- Some system file (e.g., /etc/passwd, /var/run/utmp,
|
** EX_OSFILE -- Some system file (e.g., /etc/passwd, /var/run/utmp,
|
||||||
** etc.) does not exist, cannot be opened, or has some
|
** etc.) does not exist, cannot be opened, or has some
|
||||||
** sort of error (e.g., syntax error).
|
** sort of error (e.g., syntax error).
|
||||||
** EX_CANTCREAT -- A (user specified) output file cannot be
|
** EX_CANTCREAT -- A (user specified) output file cannot be
|
||||||
** created.
|
** created.
|
||||||
** EX_IOERR -- An error occurred while doing I/O on some file.
|
** EX_IOERR -- An error occurred while doing I/O on some file.
|
||||||
** EX_TEMPFAIL -- temporary failure, indicating something that
|
** EX_TEMPFAIL -- temporary failure, indicating something that
|
||||||
** is not really an error. In sendmail, this means
|
** is not really an error. In sendmail, this means
|
||||||
** that a mailer (e.g.) could not create a connection,
|
** that a mailer (e.g.) could not create a connection,
|
||||||
** and the request should be reattempted later.
|
** and the request should be reattempted later.
|
||||||
** EX_PROTOCOL -- the remote system returned something that
|
** EX_PROTOCOL -- the remote system returned something that
|
||||||
** was "not possible" during a protocol exchange.
|
** was "not possible" during a protocol exchange.
|
||||||
** EX_NOPERM -- You did not have sufficient permission to
|
** EX_NOPERM -- You did not have sufficient permission to
|
||||||
** perform the operation. This is not intended for
|
** perform the operation. This is not intended for
|
||||||
** file system problems, which should use NOINPUT or
|
** file system problems, which should use NOINPUT or
|
||||||
** CANTCREAT, but rather for higher level permissions.
|
** CANTCREAT, but rather for higher level permissions.
|
||||||
** For example, kre uses this to restrict who students
|
** For example, kre uses this to restrict who students
|
||||||
** can send mail to.
|
** can send mail to.
|
||||||
**
|
**
|
||||||
** Maintained by Eric Allman (eric@berkeley, ucbvax!eric) --
|
** Maintained by Eric Allman (eric@berkeley, ucbvax!eric) --
|
||||||
** please mail changes to me.
|
** please mail changes to me.
|
||||||
**
|
**
|
||||||
** @(#)sysexits.h 4.4 3/24/88
|
** @(#)sysexits.h 4.4 3/24/88
|
||||||
*/
|
*/
|
||||||
|
|
||||||
# define EX_OK 0 /* successful termination */
|
# define EX_OK 0 /* successful termination */
|
||||||
|
|
||||||
# define EX__BASE 64 /* base value for error messages */
|
# define EX__BASE 64 /* base value for error messages */
|
||||||
|
|
||||||
# define EX_USAGE 64 /* command line usage error */
|
# define EX_USAGE 64 /* command line usage error */
|
||||||
# define EX_DATAERR 65 /* data format error */
|
# define EX_DATAERR 65 /* data format error */
|
||||||
# define EX_NOINPUT 66 /* cannot open input */
|
# define EX_NOINPUT 66 /* cannot open input */
|
||||||
# define EX_NOUSER 67 /* addressee unknown */
|
# define EX_NOUSER 67 /* addressee unknown */
|
||||||
# define EX_NOHOST 68 /* host name unknown */
|
# define EX_NOHOST 68 /* host name unknown */
|
||||||
# define EX_UNAVAILABLE 69 /* service unavailable */
|
# define EX_UNAVAILABLE 69 /* service unavailable */
|
||||||
# define EX_SOFTWARE 70 /* internal software error */
|
# define EX_SOFTWARE 70 /* internal software error */
|
||||||
# define EX_OSERR 71 /* system error (e.g., can't fork) */
|
# define EX_OSERR 71 /* system error (e.g., can't fork) */
|
||||||
# define EX_OSFILE 72 /* critical OS file missing */
|
# define EX_OSFILE 72 /* critical OS file missing */
|
||||||
# define EX_CANTCREAT 73 /* can't create (user) output file */
|
# define EX_CANTCREAT 73 /* can't create (user) output file */
|
||||||
# define EX_IOERR 74 /* input/output error */
|
# define EX_IOERR 74 /* input/output error */
|
||||||
# define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
|
# define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
|
||||||
# define EX_PROTOCOL 76 /* remote error in protocol */
|
# define EX_PROTOCOL 76 /* remote error in protocol */
|
||||||
# define EX_NOPERM 77 /* permission denied */
|
# define EX_NOPERM 77 /* permission denied */
|
||||||
# define EX_CONFIG 78 /* configuration error */
|
# define EX_CONFIG 78 /* configuration error */
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* tcl.h --
|
* tcl.h --
|
||||||
*
|
*
|
||||||
* This header file describes the externally-visible facilities
|
* This header file describes the externally-visible facilities
|
||||||
* of the Tcl interpreter.
|
* of the Tcl interpreter.
|
||||||
*
|
*
|
||||||
* Copyright 1987-1991 Regents of the University of California
|
* Copyright 1987-1991 Regents of the University of California
|
||||||
* Permission to use, copy, modify, and distribute this
|
* Permission to use, copy, modify, and distribute this
|
||||||
@@ -16,9 +16,9 @@
|
|||||||
#ifndef _TCL
|
#ifndef _TCL
|
||||||
#define _TCL
|
#define _TCL
|
||||||
|
|
||||||
#define TCL_VERSION "6.7"
|
#define TCL_VERSION "6.7"
|
||||||
#define TCL_MAJOR_VERSION 6
|
#define TCL_MAJOR_VERSION 6
|
||||||
#define TCL_MINOR_VERSION 7
|
#define TCL_MINOR_VERSION 7
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Data structures defined opaquely in this module. The definitions
|
* Data structures defined opaquely in this module. The definitions
|
||||||
@@ -28,17 +28,17 @@
|
|||||||
* in the "real" definition in tclInt.h.
|
* in the "real" definition in tclInt.h.
|
||||||
*/
|
*/
|
||||||
typedef struct Tcl_Interp {
|
typedef struct Tcl_Interp {
|
||||||
unsigned char *result; /* Points to result string returned by last
|
unsigned char *result; /* Points to result string returned by last
|
||||||
* command. */
|
* command. */
|
||||||
void (*freeProc) (unsigned char *blockPtr);
|
void (*freeProc) (unsigned char *blockPtr);
|
||||||
/* Zero means result is statically allocated.
|
/* Zero means result is statically allocated.
|
||||||
* If non-zero, gives address of procedure
|
* If non-zero, gives address of procedure
|
||||||
* to invoke to free the result. Must be
|
* to invoke to free the result. Must be
|
||||||
* freed by Tcl_Eval before executing next
|
* freed by Tcl_Eval before executing next
|
||||||
* command. */
|
* command. */
|
||||||
unsigned short errorLine; /* When TCL_ERROR is returned, this gives
|
unsigned short errorLine; /* When TCL_ERROR is returned, this gives
|
||||||
* the line number within the command where
|
* the line number within the command where
|
||||||
* the error occurred (1 means first line). */
|
* the error occurred (1 means first line). */
|
||||||
} Tcl_Interp;
|
} Tcl_Interp;
|
||||||
|
|
||||||
typedef void *Tcl_Trace;
|
typedef void *Tcl_Trace;
|
||||||
@@ -50,23 +50,23 @@ typedef void *Tcl_CmdBuf;
|
|||||||
* the command procedure returns an integer value, which is one of the
|
* the command procedure returns an integer value, which is one of the
|
||||||
* following:
|
* following:
|
||||||
*
|
*
|
||||||
* TCL_OK Command completed normally; interp->result contains
|
* TCL_OK Command completed normally; interp->result contains
|
||||||
* the command's result.
|
* the command's result.
|
||||||
* TCL_ERROR The command couldn't be completed successfully;
|
* TCL_ERROR The command couldn't be completed successfully;
|
||||||
* interp->result describes what went wrong.
|
* interp->result describes what went wrong.
|
||||||
* TCL_RETURN The command requests that the current procedure
|
* TCL_RETURN The command requests that the current procedure
|
||||||
* return; interp->result contains the procedure's
|
* return; interp->result contains the procedure's
|
||||||
* return value.
|
* return value.
|
||||||
* TCL_BREAK The command requests that the innermost loop
|
* TCL_BREAK The command requests that the innermost loop
|
||||||
* be exited; interp->result is meaningless.
|
* be exited; interp->result is meaningless.
|
||||||
* TCL_CONTINUE Go on to the next iteration of the current loop;
|
* TCL_CONTINUE Go on to the next iteration of the current loop;
|
||||||
* interp->result is meaninless.
|
* interp->result is meaninless.
|
||||||
*/
|
*/
|
||||||
#define TCL_OK 0
|
#define TCL_OK 0
|
||||||
#define TCL_ERROR 1
|
#define TCL_ERROR 1
|
||||||
#define TCL_RETURN 2
|
#define TCL_RETURN 2
|
||||||
#define TCL_BREAK 3
|
#define TCL_BREAK 3
|
||||||
#define TCL_CONTINUE 4
|
#define TCL_CONTINUE 4
|
||||||
|
|
||||||
#define TCL_RESULT_SIZE 199
|
#define TCL_RESULT_SIZE 199
|
||||||
|
|
||||||
@@ -75,168 +75,168 @@ typedef void *Tcl_CmdBuf;
|
|||||||
*/
|
*/
|
||||||
typedef void (Tcl_CmdDeleteProc) (void *clientData);
|
typedef void (Tcl_CmdDeleteProc) (void *clientData);
|
||||||
typedef int (Tcl_CmdProc) (void *clientData,
|
typedef int (Tcl_CmdProc) (void *clientData,
|
||||||
Tcl_Interp *interp, int argc, unsigned char *argv[]);
|
Tcl_Interp *interp, int argc, unsigned char *argv[]);
|
||||||
typedef void (Tcl_CmdTraceProc) (void *clientData,
|
typedef void (Tcl_CmdTraceProc) (void *clientData,
|
||||||
Tcl_Interp *interp, int level, unsigned char *command, Tcl_CmdProc *proc,
|
Tcl_Interp *interp, int level, unsigned char *command, Tcl_CmdProc *proc,
|
||||||
void *cmdClientData, int argc, unsigned char *argv[]);
|
void *cmdClientData, int argc, unsigned char *argv[]);
|
||||||
typedef void (Tcl_FreeProc) (unsigned char *blockPtr);
|
typedef void (Tcl_FreeProc) (unsigned char *blockPtr);
|
||||||
typedef unsigned char *(Tcl_VarTraceProc) (void *clientData,
|
typedef unsigned char *(Tcl_VarTraceProc) (void *clientData,
|
||||||
Tcl_Interp *interp, unsigned char *part1, unsigned char *part2, int flags);
|
Tcl_Interp *interp, unsigned char *part1, unsigned char *part2, int flags);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flag values passed to Tcl_Eval (see the man page for details; also
|
* Flag values passed to Tcl_Eval (see the man page for details; also
|
||||||
* see tclInt.h for additional flags that are only used internally by
|
* see tclInt.h for additional flags that are only used internally by
|
||||||
* Tcl):
|
* Tcl):
|
||||||
*/
|
*/
|
||||||
#define TCL_BRACKET_TERM 1
|
#define TCL_BRACKET_TERM 1
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flag that may be passed to Tcl_ConvertElement to force it not to
|
* Flag that may be passed to Tcl_ConvertElement to force it not to
|
||||||
* output braces (careful! if you change this flag be sure to change
|
* output braces (careful! if you change this flag be sure to change
|
||||||
* the definitions at the front of tclUtil.c).
|
* the definitions at the front of tclUtil.c).
|
||||||
*/
|
*/
|
||||||
#define TCL_DONT_USE_BRACES 1
|
#define TCL_DONT_USE_BRACES 1
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flag value passed to Tcl_RecordAndEval to request no evaluation
|
* Flag value passed to Tcl_RecordAndEval to request no evaluation
|
||||||
* (record only).
|
* (record only).
|
||||||
*/
|
*/
|
||||||
#define TCL_NO_EVAL -1
|
#define TCL_NO_EVAL -1
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Specil freeProc values that may be passed to Tcl_SetResult (see
|
* Specil freeProc values that may be passed to Tcl_SetResult (see
|
||||||
* the man page for details):
|
* the man page for details):
|
||||||
*/
|
*/
|
||||||
#define TCL_STATIC ((Tcl_FreeProc *) 0)
|
#define TCL_STATIC ((Tcl_FreeProc *) 0)
|
||||||
#define TCL_VOLATILE ((Tcl_FreeProc *) -1)
|
#define TCL_VOLATILE ((Tcl_FreeProc *) -1)
|
||||||
#define TCL_DYNAMIC ((Tcl_FreeProc *) -2)
|
#define TCL_DYNAMIC ((Tcl_FreeProc *) -2)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flag values passed to variable-related procedures.
|
* Flag values passed to variable-related procedures.
|
||||||
*/
|
*/
|
||||||
#define TCL_GLOBAL_ONLY 1
|
#define TCL_GLOBAL_ONLY 1
|
||||||
#define TCL_APPEND_VALUE 2
|
#define TCL_APPEND_VALUE 2
|
||||||
#define TCL_LIST_ELEMENT 4
|
#define TCL_LIST_ELEMENT 4
|
||||||
#define TCL_NO_SPACE 8
|
#define TCL_NO_SPACE 8
|
||||||
#define TCL_TRACE_READS 0x10
|
#define TCL_TRACE_READS 0x10
|
||||||
#define TCL_TRACE_WRITES 0x20
|
#define TCL_TRACE_WRITES 0x20
|
||||||
#define TCL_TRACE_UNSETS 0x40
|
#define TCL_TRACE_UNSETS 0x40
|
||||||
#define TCL_TRACE_DESTROYED 0x80
|
#define TCL_TRACE_DESTROYED 0x80
|
||||||
#define TCL_INTERP_DESTROYED 0x100
|
#define TCL_INTERP_DESTROYED 0x100
|
||||||
#define TCL_LEAVE_ERR_MSG 0x200
|
#define TCL_LEAVE_ERR_MSG 0x200
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Additional flag passed back to variable watchers. This flag must
|
* Additional flag passed back to variable watchers. This flag must
|
||||||
* not overlap any of the TCL_TRACE_* flags defined above or the
|
* not overlap any of the TCL_TRACE_* flags defined above or the
|
||||||
* TRACE_* flags defined in tclInt.h.
|
* TRACE_* flags defined in tclInt.h.
|
||||||
*/
|
*/
|
||||||
#define TCL_VARIABLE_UNDEFINED 8
|
#define TCL_VARIABLE_UNDEFINED 8
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Exported Tcl procedures:
|
* Exported Tcl procedures:
|
||||||
*/
|
*/
|
||||||
extern void Tcl_AppendElement (Tcl_Interp *interp, unsigned char *string,
|
extern void Tcl_AppendElement (Tcl_Interp *interp, unsigned char *string,
|
||||||
int noSep);
|
int noSep);
|
||||||
extern void Tcl_AppendResult (Tcl_Interp *interp, ...);
|
extern void Tcl_AppendResult (Tcl_Interp *interp, ...);
|
||||||
extern unsigned char * Tcl_AssembleCmd (Tcl_CmdBuf buffer, unsigned char *string);
|
extern unsigned char * Tcl_AssembleCmd (Tcl_CmdBuf buffer, unsigned char *string);
|
||||||
extern void Tcl_AddErrorInfo (Tcl_Interp *interp, unsigned char *message);
|
extern void Tcl_AddErrorInfo (Tcl_Interp *interp, unsigned char *message);
|
||||||
extern char Tcl_Backslash (unsigned char *src, int *readPtr);
|
extern char Tcl_Backslash (unsigned char *src, int *readPtr);
|
||||||
extern int Tcl_CommandComplete (unsigned char *cmd);
|
extern int Tcl_CommandComplete (unsigned char *cmd);
|
||||||
extern unsigned char * Tcl_Concat (int argc, unsigned char **argv);
|
extern unsigned char * Tcl_Concat (int argc, unsigned char **argv);
|
||||||
extern int Tcl_ConvertElement (unsigned char *src, unsigned char *dst, int flags);
|
extern int Tcl_ConvertElement (unsigned char *src, unsigned char *dst, int flags);
|
||||||
extern Tcl_CmdBuf Tcl_CreateCmdBuf (void);
|
extern Tcl_CmdBuf Tcl_CreateCmdBuf (void);
|
||||||
extern void Tcl_CreateCommand (Tcl_Interp *interp, unsigned char *cmdName,
|
extern void Tcl_CreateCommand (Tcl_Interp *interp, unsigned char *cmdName,
|
||||||
Tcl_CmdProc *proc, void *clientData,
|
Tcl_CmdProc *proc, void *clientData,
|
||||||
Tcl_CmdDeleteProc *deleteProc);
|
Tcl_CmdDeleteProc *deleteProc);
|
||||||
extern Tcl_Interp * Tcl_CreateInterp (void);
|
extern Tcl_Interp * Tcl_CreateInterp (void);
|
||||||
extern int Tcl_CreatePipeline (Tcl_Interp *interp, int argc,
|
extern int Tcl_CreatePipeline (Tcl_Interp *interp, int argc,
|
||||||
unsigned char **argv, int **pidArrayPtr,
|
unsigned char **argv, int **pidArrayPtr,
|
||||||
int *inPipePtr, int *outPipePtr,
|
int *inPipePtr, int *outPipePtr,
|
||||||
int *errFilePtr);
|
int *errFilePtr);
|
||||||
extern Tcl_Trace Tcl_CreateTrace (Tcl_Interp *interp,
|
extern Tcl_Trace Tcl_CreateTrace (Tcl_Interp *interp,
|
||||||
int level, Tcl_CmdTraceProc *proc,
|
int level, Tcl_CmdTraceProc *proc,
|
||||||
void *clientData);
|
void *clientData);
|
||||||
extern void Tcl_DeleteCmdBuf (Tcl_CmdBuf buffer);
|
extern void Tcl_DeleteCmdBuf (Tcl_CmdBuf buffer);
|
||||||
extern int Tcl_DeleteCommand (Tcl_Interp *interp,
|
extern int Tcl_DeleteCommand (Tcl_Interp *interp,
|
||||||
unsigned char *cmdName);
|
unsigned char *cmdName);
|
||||||
extern void Tcl_DeleteInterp (Tcl_Interp *interp);
|
extern void Tcl_DeleteInterp (Tcl_Interp *interp);
|
||||||
extern void Tcl_DeleteTrace (Tcl_Interp *interp,
|
extern void Tcl_DeleteTrace (Tcl_Interp *interp,
|
||||||
Tcl_Trace trace);
|
Tcl_Trace trace);
|
||||||
extern void Tcl_DetachPids (int numPids, int *pidPtr);
|
extern void Tcl_DetachPids (int numPids, int *pidPtr);
|
||||||
extern unsigned char * Tcl_ErrnoId (void);
|
extern unsigned char * Tcl_ErrnoId (void);
|
||||||
extern int Tcl_Eval (Tcl_Interp *interp, unsigned char *cmd,
|
extern int Tcl_Eval (Tcl_Interp *interp, unsigned char *cmd,
|
||||||
int flags, unsigned char **termPtr);
|
int flags, unsigned char **termPtr);
|
||||||
extern int Tcl_EvalFile (Tcl_Interp *interp,
|
extern int Tcl_EvalFile (Tcl_Interp *interp,
|
||||||
unsigned char *fileName);
|
unsigned char *fileName);
|
||||||
extern int Tcl_ExprBoolean (Tcl_Interp *interp, unsigned char *string,
|
extern int Tcl_ExprBoolean (Tcl_Interp *interp, unsigned char *string,
|
||||||
int *ptr);
|
int *ptr);
|
||||||
extern int Tcl_ExprLong (Tcl_Interp *interp, unsigned char *string,
|
extern int Tcl_ExprLong (Tcl_Interp *interp, unsigned char *string,
|
||||||
long *ptr);
|
long *ptr);
|
||||||
extern int Tcl_ExprString (Tcl_Interp *interp, unsigned char *string);
|
extern int Tcl_ExprString (Tcl_Interp *interp, unsigned char *string);
|
||||||
extern int Tcl_Fork (void);
|
extern int Tcl_Fork (void);
|
||||||
extern void Tcl_FreeResult (Tcl_Interp *interp);
|
extern void Tcl_FreeResult (Tcl_Interp *interp);
|
||||||
extern int Tcl_GetBoolean (Tcl_Interp *interp,
|
extern int Tcl_GetBoolean (Tcl_Interp *interp,
|
||||||
unsigned char *string, int *boolPtr);
|
unsigned char *string, int *boolPtr);
|
||||||
extern int Tcl_GetInt (Tcl_Interp *interp,
|
extern int Tcl_GetInt (Tcl_Interp *interp,
|
||||||
unsigned char *string, int *intPtr);
|
unsigned char *string, int *intPtr);
|
||||||
extern unsigned char * Tcl_GetVar (Tcl_Interp *interp,
|
extern unsigned char * Tcl_GetVar (Tcl_Interp *interp,
|
||||||
unsigned char *varName, int flags);
|
unsigned char *varName, int flags);
|
||||||
extern unsigned char * Tcl_GetVar2 (Tcl_Interp *interp,
|
extern unsigned char * Tcl_GetVar2 (Tcl_Interp *interp,
|
||||||
unsigned char *part1, unsigned char *part2, int flags);
|
unsigned char *part1, unsigned char *part2, int flags);
|
||||||
extern int Tcl_GlobalEval (Tcl_Interp *interp,
|
extern int Tcl_GlobalEval (Tcl_Interp *interp,
|
||||||
unsigned char *command);
|
unsigned char *command);
|
||||||
extern void Tcl_InitHistory (Tcl_Interp *interp);
|
extern void Tcl_InitHistory (Tcl_Interp *interp);
|
||||||
extern void Tcl_InitMemory (Tcl_Interp *interp);
|
extern void Tcl_InitMemory (Tcl_Interp *interp);
|
||||||
extern unsigned char * Tcl_Merge (int argc, unsigned char **argv);
|
extern unsigned char * Tcl_Merge (int argc, unsigned char **argv);
|
||||||
extern unsigned char * Tcl_ParseVar (Tcl_Interp *interp,
|
extern unsigned char * Tcl_ParseVar (Tcl_Interp *interp,
|
||||||
unsigned char *string, unsigned char **termPtr);
|
unsigned char *string, unsigned char **termPtr);
|
||||||
extern int Tcl_RecordAndEval (Tcl_Interp *interp,
|
extern int Tcl_RecordAndEval (Tcl_Interp *interp,
|
||||||
unsigned char *cmd, int flags);
|
unsigned char *cmd, int flags);
|
||||||
extern void Tcl_ResetResult (Tcl_Interp *interp);
|
extern void Tcl_ResetResult (Tcl_Interp *interp);
|
||||||
extern int Tcl_ScanElement (unsigned char *string,
|
extern int Tcl_ScanElement (unsigned char *string,
|
||||||
int *flagPtr);
|
int *flagPtr);
|
||||||
extern void Tcl_SetErrorCode (Tcl_Interp *interp, ...);
|
extern void Tcl_SetErrorCode (Tcl_Interp *interp, ...);
|
||||||
extern void Tcl_SetResult (Tcl_Interp *interp,
|
extern void Tcl_SetResult (Tcl_Interp *interp,
|
||||||
unsigned char *string, Tcl_FreeProc *freeProc);
|
unsigned char *string, Tcl_FreeProc *freeProc);
|
||||||
extern unsigned char * Tcl_SetVar (Tcl_Interp *interp,
|
extern unsigned char * Tcl_SetVar (Tcl_Interp *interp,
|
||||||
unsigned char *varName, unsigned char *newValue, int flags);
|
unsigned char *varName, unsigned char *newValue, int flags);
|
||||||
extern unsigned char * Tcl_SetVar2 (Tcl_Interp *interp,
|
extern unsigned char * Tcl_SetVar2 (Tcl_Interp *interp,
|
||||||
unsigned char *part1, unsigned char *part2,
|
unsigned char *part1, unsigned char *part2,
|
||||||
unsigned char *newValue, int flags);
|
unsigned char *newValue, int flags);
|
||||||
extern unsigned char * Tcl_SignalId (int sig);
|
extern unsigned char * Tcl_SignalId (int sig);
|
||||||
extern unsigned char * Tcl_SignalMsg (int sig);
|
extern unsigned char * Tcl_SignalMsg (int sig);
|
||||||
extern int Tcl_SplitList (Tcl_Interp *interp,
|
extern int Tcl_SplitList (Tcl_Interp *interp,
|
||||||
unsigned char *list, int *argcPtr, unsigned char ***argvPtr);
|
unsigned char *list, int *argcPtr, unsigned char ***argvPtr);
|
||||||
extern int Tcl_StringMatch (unsigned char *string,
|
extern int Tcl_StringMatch (unsigned char *string,
|
||||||
unsigned char *pattern);
|
unsigned char *pattern);
|
||||||
extern unsigned char * Tcl_TildeSubst (Tcl_Interp *interp,
|
extern unsigned char * Tcl_TildeSubst (Tcl_Interp *interp,
|
||||||
unsigned char *name);
|
unsigned char *name);
|
||||||
extern int Tcl_TraceVar (Tcl_Interp *interp,
|
extern int Tcl_TraceVar (Tcl_Interp *interp,
|
||||||
unsigned char *varName, int flags, Tcl_VarTraceProc *proc,
|
unsigned char *varName, int flags, Tcl_VarTraceProc *proc,
|
||||||
void *clientData);
|
void *clientData);
|
||||||
extern int Tcl_TraceVar2 (Tcl_Interp *interp,
|
extern int Tcl_TraceVar2 (Tcl_Interp *interp,
|
||||||
unsigned char *part1, unsigned char *part2, int flags,
|
unsigned char *part1, unsigned char *part2, int flags,
|
||||||
Tcl_VarTraceProc *proc, void *clientData);
|
Tcl_VarTraceProc *proc, void *clientData);
|
||||||
extern int Tcl_UnsetVar (Tcl_Interp *interp,
|
extern int Tcl_UnsetVar (Tcl_Interp *interp,
|
||||||
unsigned char *varName, int flags);
|
unsigned char *varName, int flags);
|
||||||
extern int Tcl_UnsetVar2 (Tcl_Interp *interp,
|
extern int Tcl_UnsetVar2 (Tcl_Interp *interp,
|
||||||
unsigned char *part1, unsigned char *part2, int flags);
|
unsigned char *part1, unsigned char *part2, int flags);
|
||||||
extern void Tcl_UntraceVar (Tcl_Interp *interp,
|
extern void Tcl_UntraceVar (Tcl_Interp *interp,
|
||||||
unsigned char *varName, int flags, Tcl_VarTraceProc *proc,
|
unsigned char *varName, int flags, Tcl_VarTraceProc *proc,
|
||||||
void *clientData);
|
void *clientData);
|
||||||
extern void Tcl_UntraceVar2 (Tcl_Interp *interp,
|
extern void Tcl_UntraceVar2 (Tcl_Interp *interp,
|
||||||
unsigned char *part1, unsigned char *part2, int flags,
|
unsigned char *part1, unsigned char *part2, int flags,
|
||||||
Tcl_VarTraceProc *proc, void *clientData);
|
Tcl_VarTraceProc *proc, void *clientData);
|
||||||
extern int Tcl_VarEval (Tcl_Interp *interp, ...);
|
extern int Tcl_VarEval (Tcl_Interp *interp, ...);
|
||||||
extern void * Tcl_VarTraceInfo (Tcl_Interp *interp,
|
extern void * Tcl_VarTraceInfo (Tcl_Interp *interp,
|
||||||
unsigned char *varName, int flags,
|
unsigned char *varName, int flags,
|
||||||
Tcl_VarTraceProc *procPtr,
|
Tcl_VarTraceProc *procPtr,
|
||||||
void *prevClientData);
|
void *prevClientData);
|
||||||
extern void * Tcl_VarTraceInfo2 (Tcl_Interp *interp,
|
extern void * Tcl_VarTraceInfo2 (Tcl_Interp *interp,
|
||||||
unsigned char *part1, unsigned char *part2, int flags,
|
unsigned char *part1, unsigned char *part2, int flags,
|
||||||
Tcl_VarTraceProc *procPtr,
|
Tcl_VarTraceProc *procPtr,
|
||||||
void *prevClientData);
|
void *prevClientData);
|
||||||
extern int Tcl_WaitPids (int numPids, int *pidPtr,
|
extern int Tcl_WaitPids (int numPids, int *pidPtr,
|
||||||
int *statusPtr);
|
int *statusPtr);
|
||||||
|
|
||||||
#endif /* _TCL */
|
#endif /* _TCL */
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#define E_TERMCAP "/etc/termcap"
|
||||||
|
|
||||||
typedef unsigned char cc_t;
|
typedef unsigned char cc_t;
|
||||||
typedef unsigned int speed_t;
|
typedef unsigned int speed_t;
|
||||||
typedef unsigned int tcflag_t;
|
typedef unsigned int tcflag_t;
|
||||||
@@ -15,7 +17,7 @@ struct termios
|
|||||||
tcflag_t c_oflag; /* output mode flags */
|
tcflag_t c_oflag; /* output mode flags */
|
||||||
tcflag_t c_cflag; /* control mode flags */
|
tcflag_t c_cflag; /* control mode flags */
|
||||||
tcflag_t c_lflag; /* local mode flags */
|
tcflag_t c_lflag; /* local mode flags */
|
||||||
cc_t c_line; /* line discipline */
|
cc_t c_line; /* line discipline */
|
||||||
cc_t c_cc[NCCS]; /* control characters */
|
cc_t c_cc[NCCS]; /* control characters */
|
||||||
speed_t c_ispeed; /* input speed */
|
speed_t c_ispeed; /* input speed */
|
||||||
speed_t c_ospeed; /* output speed */
|
speed_t c_ospeed; /* output speed */
|
||||||
@@ -143,4 +145,5 @@ extern int tcsetattr(int, int, struct termios *);
|
|||||||
#define TIOCSETAW _IOW(i, 92, struct termios)
|
#define TIOCSETAW _IOW(i, 92, struct termios)
|
||||||
#define TIOCSETAF _IOW(i, 92, struct termios)
|
#define TIOCSETAF _IOW(i, 92, struct termios)
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -6,44 +6,30 @@
|
|||||||
#ifndef _TIME_H
|
#ifndef _TIME_H
|
||||||
#define _TIME_H
|
#define _TIME_H
|
||||||
|
|
||||||
#ifndef NULL
|
#include <sys/types.h> /* for time_t */
|
||||||
#define NULL 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef _TIME_T
|
|
||||||
#define _TIME_T
|
|
||||||
typedef long time_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef _SIZE_T
|
|
||||||
#define _SIZE_T
|
|
||||||
typedef unsigned size_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Structure returned by gmtime and localtime calls (see ctime(3)).
|
* Structure returned by gmtime and localtime calls (see ctime(3)).
|
||||||
*/
|
*/
|
||||||
struct tm {
|
struct tm {
|
||||||
int tm_sec;
|
int tm_sec;
|
||||||
int tm_min;
|
int tm_min;
|
||||||
int tm_hour;
|
int tm_hour;
|
||||||
int tm_mday;
|
int tm_mday;
|
||||||
int tm_mon;
|
int tm_mon;
|
||||||
int tm_year;
|
int tm_year;
|
||||||
int tm_wday;
|
int tm_wday;
|
||||||
int tm_yday;
|
int tm_yday;
|
||||||
int tm_isdst;
|
int tm_isdst;
|
||||||
long tm_gmtoff;
|
long tm_gmtoff;
|
||||||
char *tm_zone;
|
char *tm_zone;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct tm *gmtime(const time_t *);
|
extern struct tm *gmtime(), *localtime();
|
||||||
struct tm *localtime(const time_t *);
|
extern char *asctime(), *ctime();
|
||||||
char *asctime(const struct tm *);
|
extern time_t time();
|
||||||
char *ctime(const time_t *);
|
|
||||||
time_t time(time_t *);
|
|
||||||
|
|
||||||
size_t strftime (char *s, size_t maxsize, const char *format,
|
size_t strftime (char *s, size_t maxsize, const char *format,
|
||||||
const struct tm *timeptr);
|
const struct tm *timeptr);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -4,17 +4,17 @@
|
|||||||
* specifies the terms and conditions for redistribution.
|
* specifies the terms and conditions for redistribution.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct ttyent { /* see getttyent(3) */
|
struct ttyent { /* see getttyent(3) */
|
||||||
char *ty_name; /* terminal device name */
|
char *ty_name; /* terminal device name */
|
||||||
char *ty_getty; /* command to execute, usually getty */
|
char *ty_getty; /* command to execute, usually getty */
|
||||||
char *ty_type; /* terminal type for termcap (3X) */
|
char *ty_type; /* terminal type for termcap (3X) */
|
||||||
int ty_status; /* status flags (see below for defines) */
|
int ty_status; /* status flags (see below for defines) */
|
||||||
char *ty_window; /* command to start up window manager */
|
char *ty_window; /* command to start up window manager */
|
||||||
char *ty_comment; /* usually the location of the terminal */
|
char *ty_comment; /* usually the location of the terminal */
|
||||||
};
|
};
|
||||||
|
|
||||||
#define TTY_ON 0x1 /* enable logins (startup getty) */
|
#define TTY_ON 0x1 /* enable logins (startup getty) */
|
||||||
#define TTY_SECURE 0x2 /* allow root to login */
|
#define TTY_SECURE 0x2 /* allow root to login */
|
||||||
|
|
||||||
struct ttyent *getttyent (void);
|
struct ttyent *getttyent (void);
|
||||||
struct ttyent *getttynam (const char *name);
|
struct ttyent *getttynam (const char *name);
|
||||||
|
|||||||
110
include/tzfile.h
110
include/tzfile.h
@@ -1,34 +1,35 @@
|
|||||||
/*
|
/*
|
||||||
* @(#)tzfile.h 5.2.1 (2.11BSD) 1996/11/29
|
* @(#)tzfile.h 5.2.1 (2.11BSD) 1996/11/29
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Information about time zone files.
|
** Information about time zone files.
|
||||||
*/
|
*/
|
||||||
/* Time zone object file directory */
|
|
||||||
#define TZDIR "/usr/share/zoneinfo"
|
/* Time zone object file directory */
|
||||||
#define TZDEFAULT "/etc/localtime"
|
#define TZDEFAULT "/etc/localtime"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Each file begins with. . .
|
** Each file begins with. . .
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct tzhead {
|
struct tzhead {
|
||||||
char tzh_reserved[32]; /* reserved for future use */
|
char tzh_reserved[32]; /* reserved for future use */
|
||||||
char tzh_timecnt[4]; /* coded number of transition times */
|
char tzh_timecnt[4]; /* coded number of transition times */
|
||||||
char tzh_typecnt[4]; /* coded number of local time types */
|
char tzh_typecnt[4]; /* coded number of local time types */
|
||||||
char tzh_charcnt[4]; /* coded number of abbr. chars */
|
char tzh_charcnt[4]; /* coded number of abbr. chars */
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** . . .followed by. . .
|
** . . .followed by. . .
|
||||||
**
|
**
|
||||||
** tzh_timecnt (char [4])s coded transition times a la time(2)
|
** tzh_timecnt (char [4])s coded transition times a la time(2)
|
||||||
** tzh_timecnt (unsigned char)s types of local time starting at above
|
** tzh_timecnt (unsigned char)s types of local time starting at above
|
||||||
** tzh_typecnt repetitions of
|
** tzh_typecnt repetitions of
|
||||||
** one (char [4]) coded GMT offset in seconds
|
** one (char [4]) coded GMT offset in seconds
|
||||||
** one (unsigned char) used to set tm_isdt
|
** one (unsigned char) used to set tm_isdt
|
||||||
** one (unsigned char) that's an abbreviation list index
|
** one (unsigned char) that's an abbreviation list index
|
||||||
** tzh_charcnt (char)s '\0'-terminated zone abbreviaton strings
|
** tzh_charcnt (char)s '\0'-terminated zone abbreviaton strings
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -42,57 +43,58 @@ struct tzhead {
|
|||||||
** 138 years of Pacific Presidential Election time
|
** 138 years of Pacific Presidential Election time
|
||||||
** (where there are three time zone transitions every fourth year).
|
** (where there are three time zone transitions every fourth year).
|
||||||
*/
|
*/
|
||||||
#define TZ_MAX_TIMES 370
|
#define TZ_MAX_TIMES 370
|
||||||
|
|
||||||
#define NOSOLAR /* We currently don't handle solar time */
|
#define NOSOLAR /* We currently don't handle solar time */
|
||||||
|
|
||||||
#ifndef NOSOLAR
|
#ifndef NOSOLAR
|
||||||
#define TZ_MAX_TYPES 256 /* Limited by what (unsigned char)'s can hold */
|
#define TZ_MAX_TYPES 256 /* Limited by what (unsigned char)'s can hold */
|
||||||
#else /* !NOSOLAR */
|
#else /* !NOSOLAR */
|
||||||
#define TZ_MAX_TYPES 10 /* Maximum number of local time types */
|
#define TZ_MAX_TYPES 10 /* Maximum number of local time types */
|
||||||
#endif /* !NOSOLAR */
|
#endif /* !NOSOLAR */
|
||||||
|
|
||||||
#define TZ_MAX_CHARS 50 /* Maximum number of abbreviation characters */
|
#define TZ_MAX_CHARS 50 /* Maximum number of abbreviation characters */
|
||||||
|
|
||||||
#define SECS_PER_MIN 60
|
#define SECS_PER_MIN 60
|
||||||
#define MINS_PER_HOUR 60
|
#define MINS_PER_HOUR 60
|
||||||
#define HOURS_PER_DAY 24
|
#define HOURS_PER_DAY 24
|
||||||
#define DAYS_PER_WEEK 7
|
#define DAYS_PER_WEEK 7
|
||||||
#define DAYS_PER_NYEAR 365
|
#define DAYS_PER_NYEAR 365
|
||||||
#define DAYS_PER_LYEAR 366
|
#define DAYS_PER_LYEAR 366
|
||||||
#define SECS_PER_HOUR (SECS_PER_MIN * MINS_PER_HOUR)
|
#define SECS_PER_HOUR (SECS_PER_MIN * MINS_PER_HOUR)
|
||||||
#define SECS_PER_DAY ((long) SECS_PER_HOUR * HOURS_PER_DAY)
|
#define SECS_PER_DAY ((long) SECS_PER_HOUR * HOURS_PER_DAY)
|
||||||
#define MONS_PER_YEAR 12
|
#define MONS_PER_YEAR 12
|
||||||
|
|
||||||
#define TM_SUNDAY 0
|
#define TM_SUNDAY 0
|
||||||
#define TM_MONDAY 1
|
#define TM_MONDAY 1
|
||||||
#define TM_TUESDAY 2
|
#define TM_TUESDAY 2
|
||||||
#define TM_WEDNESDAY 3
|
#define TM_WEDNESDAY 3
|
||||||
#define TM_THURSDAY 4
|
#define TM_THURSDAY 4
|
||||||
#define TM_FRIDAY 5
|
#define TM_FRIDAY 5
|
||||||
#define TM_SATURDAY 6
|
#define TM_SATURDAY 6
|
||||||
|
|
||||||
#define TM_JANUARY 0
|
#define TM_JANUARY 0
|
||||||
#define TM_FEBRUARY 1
|
#define TM_FEBRUARY 1
|
||||||
#define TM_MARCH 2
|
#define TM_MARCH 2
|
||||||
#define TM_APRIL 3
|
#define TM_APRIL 3
|
||||||
#define TM_MAY 4
|
#define TM_MAY 4
|
||||||
#define TM_JUNE 5
|
#define TM_JUNE 5
|
||||||
#define TM_JULY 6
|
#define TM_JULY 6
|
||||||
#define TM_AUGUST 7
|
#define TM_AUGUST 7
|
||||||
#define TM_SEPTEMBER 8
|
#define TM_SEPTEMBER 8
|
||||||
#define TM_OCTOBER 9
|
#define TM_OCTOBER 9
|
||||||
#define TM_NOVEMBER 10
|
#define TM_NOVEMBER 10
|
||||||
#define TM_DECEMBER 11
|
#define TM_DECEMBER 11
|
||||||
#define TM_SUNDAY 0
|
#define TM_SUNDAY 0
|
||||||
|
|
||||||
#define TM_YEAR_BASE 1900
|
#define TM_YEAR_BASE 1900
|
||||||
|
|
||||||
#define EPOCH_YEAR 1970
|
#define EPOCH_YEAR 1970
|
||||||
#define EPOCH_WDAY TM_THURSDAY
|
#define EPOCH_WDAY TM_THURSDAY
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Accurate only for the past couple of centuries;
|
** Accurate only for the past couple of centuries;
|
||||||
** that will probably do.
|
** that will probably do.
|
||||||
*/
|
*/
|
||||||
#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
|
|
||||||
|
#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
|
||||||
|
|||||||
139
include/unistd.h
139
include/unistd.h
@@ -1,6 +1,6 @@
|
|||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1991, 1993, 1994
|
* Copyright (c) 1991, 1993, 1994
|
||||||
* The Regents of the University of California. All rights reserved.
|
* The Regents of the University of California. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@@ -12,8 +12,8 @@
|
|||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the University of
|
* This product includes software developed by the University of
|
||||||
* California, Berkeley and its contributors.
|
* California, Berkeley and its contributors.
|
||||||
* 4. Neither the name of the University nor the names of its contributors
|
* 4. Neither the name of the University nor the names of its contributors
|
||||||
* may be used to endorse or promote products derived from this software
|
* may be used to endorse or promote products derived from this software
|
||||||
* without specific prior written permission.
|
* without specific prior written permission.
|
||||||
@@ -38,64 +38,64 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _UNISTD_H_
|
#ifndef _UNISTD_H_
|
||||||
#define _UNISTD_H_
|
#define _UNISTD_H_
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#define STDIN_FILENO 0 /* standard input file descriptor */
|
#define STDIN_FILENO 0 /* standard input file descriptor */
|
||||||
#define STDOUT_FILENO 1 /* standard output file descriptor */
|
#define STDOUT_FILENO 1 /* standard output file descriptor */
|
||||||
#define STDERR_FILENO 2 /* standard error file descriptor */
|
#define STDERR_FILENO 2 /* standard error file descriptor */
|
||||||
|
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
#define NULL 0 /* null pointer constant */
|
#define NULL 0 /* null pointer constant */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Values for the second argument to access.
|
/* Values for the second argument to access.
|
||||||
These may be OR'd together. */
|
These may be OR'd together. */
|
||||||
#define R_OK 4 /* Test for read permission. */
|
#define R_OK 4 /* Test for read permission. */
|
||||||
#define W_OK 2 /* Test for write permission. */
|
#define W_OK 2 /* Test for write permission. */
|
||||||
#define X_OK 1 /* Test for execute permission. */
|
#define X_OK 1 /* Test for execute permission. */
|
||||||
#define F_OK 0 /* Test for existence. */
|
#define F_OK 0 /* Test for existence. */
|
||||||
|
|
||||||
void _exit (int);
|
void _exit (int);
|
||||||
int access();
|
int access();
|
||||||
unsigned int alarm();
|
unsigned int alarm();
|
||||||
pid_t fork();
|
pid_t fork();
|
||||||
gid_t getegid();
|
gid_t getegid();
|
||||||
uid_t geteuid();
|
uid_t geteuid();
|
||||||
gid_t getgid();
|
gid_t getgid();
|
||||||
char *getlogin();
|
char *getlogin();
|
||||||
pid_t getpgrp();
|
pid_t getpgrp();
|
||||||
pid_t getpid();
|
pid_t getpid();
|
||||||
pid_t getppid();
|
pid_t getppid();
|
||||||
uid_t getuid();
|
uid_t getuid();
|
||||||
off_t lseek();
|
off_t lseek();
|
||||||
ssize_t read();
|
ssize_t read();
|
||||||
unsigned int sleep();
|
unsigned int sleep();
|
||||||
char *ttyname();
|
char *ttyname();
|
||||||
ssize_t write (int fd, const void *buf, size_t count);
|
ssize_t write (int fd, const void *buf, size_t count);
|
||||||
int truncate (const char *path, off_t length);
|
int truncate (const char *path, off_t length);
|
||||||
int ftruncate (int fd, off_t length);
|
int ftruncate (int fd, off_t length);
|
||||||
|
|
||||||
void *brk (const void *addr);
|
void *brk (const void *addr);
|
||||||
int _brk (const void *addr);
|
int _brk (const void *addr);
|
||||||
char *crypt();
|
char *crypt();
|
||||||
void endusershell();
|
void endusershell();
|
||||||
long gethostid();
|
long gethostid();
|
||||||
char *getpass();
|
char *getpass();
|
||||||
char *getusershell();
|
char *getusershell();
|
||||||
char *getwd();
|
char *getwd();
|
||||||
void psignal();
|
void psignal();
|
||||||
extern char *sys_siglist[];
|
extern char *sys_siglist[];
|
||||||
char *re_comp();
|
char *re_comp();
|
||||||
void *sbrk (int incr);
|
void *sbrk (int incr);
|
||||||
int sethostid();
|
int sethostid();
|
||||||
void setusershell();
|
void setusershell();
|
||||||
void sync();
|
void sync();
|
||||||
unsigned int ualarm();
|
unsigned int ualarm();
|
||||||
void usleep();
|
void usleep();
|
||||||
int pause (void);
|
int pause (void);
|
||||||
pid_t vfork();
|
pid_t vfork();
|
||||||
|
|
||||||
int pipe (int pipefd[2]);
|
int pipe (int pipefd[2]);
|
||||||
int close (int fd);
|
int close (int fd);
|
||||||
@@ -126,41 +126,36 @@ int stat (const char *path, struct stat *buf);
|
|||||||
int fstat (int fd, struct stat *buf);
|
int fstat (int fd, struct stat *buf);
|
||||||
int lstat (const char *path, struct stat *buf);
|
int lstat (const char *path, struct stat *buf);
|
||||||
|
|
||||||
int execl (const char *path, const char *arg0, ... /* NULL */);
|
int execl (const char *path, const char *arg0, ... /* NULL */);
|
||||||
int execle (const char *path, const char *arg0, ... /* NULL, char *envp[] */);
|
int execle (const char *path, const char *arg0, ... /* NULL, char *envp[] */);
|
||||||
int execlp (const char *file, const char *arg0, ... /* NULL */);
|
int execlp (const char *file, const char *arg0, ... /* NULL */);
|
||||||
|
|
||||||
int execv (const char *path, char *const argv[]);
|
int execv (const char *path, char *const argv[]);
|
||||||
int execve (const char *path, char *const arg0[], char *const envp[]);
|
int execve (const char *path, char *const arg0[], char *const envp[]);
|
||||||
int execvp (const char *file, char *const argv[]);
|
int execvp (const char *file, char *const argv[]);
|
||||||
|
|
||||||
extern char **environ; /* Environment, from crt0. */
|
extern char **environ; /* Environment, from crt0. */
|
||||||
extern const char *__progname; /* Program name, from crt0. */
|
extern const char *__progname; /* Program name, from crt0. */
|
||||||
|
|
||||||
int getopt (int argc, char * const argv[], const char *optstring);
|
int getopt (int argc, char * const argv[], const char *optstring);
|
||||||
|
|
||||||
extern char *optarg; /* getopt(3) external variables */
|
extern char *optarg; /* getopt(3) external variables */
|
||||||
extern int opterr, optind, optopt;
|
extern int opterr, optind, optopt;
|
||||||
|
|
||||||
#ifndef _VA_LIST_
|
#ifndef _VA_LIST_
|
||||||
# ifdef __GNUC__
|
#define va_list __builtin_va_list /* For GCC */
|
||||||
# define va_list __builtin_va_list /* For Gnu C */
|
|
||||||
# endif
|
|
||||||
# ifdef __SMALLER_C__
|
|
||||||
# define va_list char * /* For Smaller C */
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void err (int eval, const char *fmt, ...);
|
void err (int eval, const char *fmt, ...);
|
||||||
void errx (int eval, const char *fmt, ...);
|
void errx (int eval, const char *fmt, ...);
|
||||||
void warn (const char *fmt, ...);
|
void warn (const char *fmt, ...);
|
||||||
void warnx (const char *fmt, ...);
|
void warnx (const char *fmt, ...);
|
||||||
void verr (int eval, const char *fmt, va_list ap);
|
void verr (int eval, const char *fmt, va_list ap);
|
||||||
void verrx (int eval, const char *fmt, va_list ap);
|
void verrx (int eval, const char *fmt, va_list ap);
|
||||||
void vwarn (const char *fmt, va_list ap);
|
void vwarn (const char *fmt, va_list ap);
|
||||||
void vwarnx (const char *fmt, va_list ap);
|
void vwarnx (const char *fmt, va_list ap);
|
||||||
|
|
||||||
#ifndef _VA_LIST_
|
#ifndef _VA_LIST_
|
||||||
# undef va_list
|
#undef va_list
|
||||||
#endif
|
#endif
|
||||||
#endif /* !_UNISTD_H_ */
|
#endif /* !_UNISTD_H_ */
|
||||||
|
|||||||
@@ -15,13 +15,13 @@
|
|||||||
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define UT_NAMESIZE 15
|
#define UT_NAMESIZE 15
|
||||||
#define UT_LINESIZE 8
|
#define UT_LINESIZE 8
|
||||||
#define UT_HOSTSIZE 16
|
#define UT_HOSTSIZE 16
|
||||||
|
|
||||||
struct utmp {
|
struct utmp {
|
||||||
char ut_line[UT_LINESIZE];
|
char ut_line[UT_LINESIZE];
|
||||||
char ut_name[UT_NAMESIZE];
|
char ut_name[UT_NAMESIZE];
|
||||||
char ut_host[UT_HOSTSIZE];
|
char ut_host[UT_HOSTSIZE];
|
||||||
long ut_time;
|
long ut_time;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,62 +2,63 @@
|
|||||||
* Author: S.M. Schultz
|
* Author: S.M. Schultz
|
||||||
*
|
*
|
||||||
* ----------- Modification History ------------
|
* ----------- Modification History ------------
|
||||||
* Version Date Reason For Modification
|
* Version Date Reason For Modification
|
||||||
* 1.0 01Jan80 1. Initial release.
|
* 1.0 01Jan80 1. Initial release.
|
||||||
* 2.0 31Mar83 2. Cleanup.
|
* 2.0 31Mar83 2. Cleanup.
|
||||||
* 3.0 08Sep93 3. Change v_foffset to off_t instead of int.
|
* 3.0 08Sep93 3. Change v_foffset to off_t instead of int.
|
||||||
* 3.1 21Oct93 4. Create union member of structure to
|
* 3.1 21Oct93 4. Create union member of structure to
|
||||||
* make 'int' or 'char' access to data easy.
|
* make 'int' or 'char' access to data easy.
|
||||||
* Define segment+offset and modified macros.
|
* Define segment+offset and modified macros.
|
||||||
* Place into the public domain.
|
* Place into the public domain.
|
||||||
* --------------------------------------------------
|
* --------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#define MAXSEGNO 16384 /* max number of segments in a space */
|
#define MAXSEGNO 16384 /* max number of segments in a space */
|
||||||
#define BYTESPERSEG 1024 /* must be power of two! */
|
#define BYTESPERSEG 1024 /* must be power of two! */
|
||||||
#define LOG2BPS 10 /* log2(BYTESPERSEG) */
|
#define LOG2BPS 10 /* log2(BYTESPERSEG) */
|
||||||
#define WORDSPERSEG (BYTESPERSEG/sizeof (int))
|
#define WORDSPERSEG (BYTESPERSEG/sizeof (int))
|
||||||
|
|
||||||
struct vspace {
|
struct vspace {
|
||||||
int v_fd; /* file for swapping */
|
int v_fd; /* file for swapping */
|
||||||
off_t v_foffset; /* offset for computing file addresses */
|
off_t v_foffset; /* offset for computing file addresses */
|
||||||
int v_maxsegno; /* number of segments in this space */
|
int v_maxsegno; /* number of segments in this space */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct dlink { /* general double link structure */
|
struct dlink { /* general double link structure */
|
||||||
struct dlink *fwd; /* forward link */
|
struct dlink *fwd; /* forward link */
|
||||||
struct dlink *back; /* back link */
|
struct dlink *back; /* back link */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct vseg { /* structure of a segment in memory */
|
struct vseg { /* structure of a segment in memory */
|
||||||
struct dlink s_link; /* for linking into lru list */
|
struct dlink s_link; /* for linking into lru list */
|
||||||
int s_segno; /* segment number */
|
int s_segno; /* segment number */
|
||||||
struct vspace *s_vspace; /* which virtual space */
|
struct vspace *s_vspace; /* which virtual space */
|
||||||
int s_lock_count;
|
int s_lock_count;
|
||||||
int s_flags;
|
int s_flags;
|
||||||
union {
|
union
|
||||||
int _winfo[WORDSPERSEG]; /* the actual segment */
|
{
|
||||||
char _cinfo[BYTESPERSEG];
|
int _winfo[WORDSPERSEG]; /* the actual segment */
|
||||||
} v_un;
|
char _cinfo[BYTESPERSEG];
|
||||||
};
|
} v_un;
|
||||||
|
};
|
||||||
|
|
||||||
#define s_winfo v_un._winfo
|
#define s_winfo v_un._winfo
|
||||||
#define s_cinfo v_un._cinfo
|
#define s_cinfo v_un._cinfo
|
||||||
|
|
||||||
/* masks for s_flags */
|
/* masks for s_flags */
|
||||||
#define S_DIRTY 01 /* segment has been modified */
|
#define S_DIRTY 01 /* segment has been modified */
|
||||||
|
|
||||||
long nswaps; /* number of swaps */
|
long nswaps; /* number of swaps */
|
||||||
long nmapsegs; /* number of mapseg calls */
|
long nmapsegs; /* number of mapseg calls */
|
||||||
|
|
||||||
int vminit(), vmopen();
|
int vminit(), vmopen();
|
||||||
struct vseg *vmmapseg();
|
struct vseg *vmmapseg();
|
||||||
void vmlock(), vmunlock(), vmclrseg(), vmmodify();
|
void vmlock(), vmunlock(), vmclrseg(), vmmodify();
|
||||||
void vmflush(), vmclose();
|
void vmflush(), vmclose();
|
||||||
|
|
||||||
typedef long VADDR;
|
typedef long VADDR;
|
||||||
|
#define VMMODIFY(seg) (seg->s_flags |= S_DIRTY)
|
||||||
#define VMMODIFY(seg) (seg->s_flags |= S_DIRTY)
|
#define VSEG(va) ((short)(va >> LOG2BPS))
|
||||||
#define VSEG(va) ((short)(va >> LOG2BPS))
|
#define VOFF(va) ((u_short)va % BYTESPERSEG)
|
||||||
#define VOFF(va) ((u_short)va % BYTESPERSEG)
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef _SOCKET_H_
|
#ifndef _SOCKET_H_
|
||||||
#define _SOCKET_H_
|
#define _SOCKET_H_
|
||||||
|
|
||||||
#include "w5100.h"
|
#include "w5100.h"
|
||||||
|
|
||||||
|
|||||||
@@ -9,8 +9,8 @@
|
|||||||
* Updated August/3/2011 by Lowell Scott Hanson to be compatable with chipKIT boards
|
* Updated August/3/2011 by Lowell Scott Hanson to be compatable with chipKIT boards
|
||||||
* Updated April/13/2012 by Serge Vakulenko for RetroBSD project
|
* Updated April/13/2012 by Serge Vakulenko for RetroBSD project
|
||||||
*/
|
*/
|
||||||
#ifndef W5100_H_INCLUDED
|
#ifndef W5100_H_INCLUDED
|
||||||
#define W5100_H_INCLUDED
|
#define W5100_H_INCLUDED
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
|||||||
41
lib/Makefile
Normal file → Executable file
41
lib/Makefile
Normal file → Executable file
@@ -1,11 +1,21 @@
|
|||||||
TOPSRC = $(shell cd ..; pwd)
|
TOPSRC = $(shell cd ..; pwd)
|
||||||
SUBDIR = startup libc libm libcurses libtermlib libwiznet libreadline libgpanel
|
SUBDIR = startup libc libcurses libtermlib libwiznet
|
||||||
PROG = ar as aout ld nm ranlib size strip
|
PROG = ar as aout ld nm ranlib size strip
|
||||||
|
|
||||||
CFLAGS = -m32 -Os -std=gnu89 -fno-builtin -g -Wall -DCROSS -I. \
|
# Build a list of the host include directories.
|
||||||
-idirafter $(TOPSRC)/include \
|
CPP = $(shell gcc -print-prog-name=cc1)
|
||||||
-idirafter $(TOPSRC)/src/cmd/ar \
|
HOSTINC = $(addprefix -I,$(shell echo | $(CPP) -v 2>&1 | grep '^ /.*include'))
|
||||||
-idirafter $(TOPSRC)/src/cmd/as
|
|
||||||
|
# Add system include path
|
||||||
|
ifeq (,$(wildcard /usr/include/i386-linux-gnu))
|
||||||
|
HOSTINC += -I/usr/include
|
||||||
|
else
|
||||||
|
HOSTINC += -I/usr/include/i386-linux-gnu
|
||||||
|
endif
|
||||||
|
|
||||||
|
CFLAGS += -nostdinc -fno-builtin -g -Werror -Wall -DCROSS -I. $(HOSTINC) \
|
||||||
|
-I$(TOPSRC)/include -I$(TOPSRC)/src/cmd/ar \
|
||||||
|
-I$(TOPSRC)/src/cmd/as
|
||||||
LDFLAGS += -g
|
LDFLAGS += -g
|
||||||
|
|
||||||
AR_OBJS = ar.o append.o archive.o contents.o delete.o extract.o \
|
AR_OBJS = ar.o append.o archive.o contents.o delete.o extract.o \
|
||||||
@@ -14,9 +24,8 @@ AOUT_OBJS = aout.o mips-dis.o
|
|||||||
RANLIB_OBJS = ranlib.o archive.o
|
RANLIB_OBJS = ranlib.o archive.o
|
||||||
HEADERS = a.out.h ar.h nlist.h ranlib.h
|
HEADERS = a.out.h ar.h nlist.h ranlib.h
|
||||||
|
|
||||||
vpath %.c $(TOPSRC)/src/cmd/aout $(TOPSRC)/src/cmd/ar $(TOPSRC)/src/cmd/as \
|
vpath %.c $(TOPSRC)/src/cmd/ar $(TOPSRC)/src/cmd/as $(TOPSRC)/src/cmd/ld \
|
||||||
$(TOPSRC)/src/cmd/ld $(TOPSRC)/src/cmd/nm $(TOPSRC)/src/cmd/ranlib \
|
$(TOPSRC)/src/cmd/nm $(TOPSRC)/src/cmd/ranlib $(TOPSRC)/src/cmd
|
||||||
$(TOPSRC)/src/cmd
|
|
||||||
|
|
||||||
all install depend: $(HEADERS) $(SUBDIR) $(PROG)
|
all install depend: $(HEADERS) $(SUBDIR) $(PROG)
|
||||||
-for i in $(SUBDIR); do $(MAKE) -C $$i $(MFLAGS) DESTDIR=$(DESTDIR) $@; done
|
-for i in $(SUBDIR); do $(MAKE) -C $$i $(MFLAGS) DESTDIR=$(DESTDIR) $@; done
|
||||||
@@ -26,28 +35,28 @@ clean:
|
|||||||
for i in $(SUBDIR); do $(MAKE) -C $$i $(MFLAGS) clean; done
|
for i in $(SUBDIR); do $(MAKE) -C $$i $(MFLAGS) clean; done
|
||||||
|
|
||||||
ar: $(AR_OBJS)
|
ar: $(AR_OBJS)
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $(AR_OBJS) $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $(AR_OBJS) $(LIBS)
|
||||||
|
|
||||||
as: as.o
|
as: as.o
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $< $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $< $(LIBS)
|
||||||
|
|
||||||
aout: $(AOUT_OBJS)
|
aout: $(AOUT_OBJS)
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $(AOUT_OBJS) $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $(AOUT_OBJS) $(LIBS)
|
||||||
|
|
||||||
ld: ld.o
|
ld: ld.o
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $< $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $< $(LIBS)
|
||||||
|
|
||||||
nm: nm.o
|
nm: nm.o
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $< $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $< $(LIBS)
|
||||||
|
|
||||||
ranlib: $(RANLIB_OBJS)
|
ranlib: $(RANLIB_OBJS)
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $(RANLIB_OBJS) $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $(RANLIB_OBJS) $(LIBS)
|
||||||
|
|
||||||
size: size.o
|
size: size.o
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $< $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $< $(LIBS)
|
||||||
|
|
||||||
strip: strip.o
|
strip: strip.o
|
||||||
$(CC) -m32 $(LDFLAGS) -o $@ $< $(LIBS)
|
$(CC) $(LDFLAGS) -o $@ $< $(LIBS)
|
||||||
|
|
||||||
$(HEADERS):
|
$(HEADERS):
|
||||||
-ln -s -f ../include/a.out.h .
|
-ln -s -f ../include/a.out.h .
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ vpath %.c $(LIBCDIR)/mips/sys $(LIBCDIR)/gen $(LIBCDIR)/stdio \
|
|||||||
$(LIBCDIR)/stdlib $(LIBCDIR)/string $(LIBCDIR)/inet \
|
$(LIBCDIR)/stdlib $(LIBCDIR)/string $(LIBCDIR)/inet \
|
||||||
$(LIBCDIR)/compat $(LIBCDIR)/runtime
|
$(LIBCDIR)/compat $(LIBCDIR)/runtime
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
CFLAGS += -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
||||||
ASFLAGS += -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -I$(LIBCDIR)/mips/sys
|
ASFLAGS += -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -I$(LIBCDIR)/mips/sys
|
||||||
|
|
||||||
# modules which can not use SYSCALL and must be assembled from sources. The
|
# modules which can not use SYSCALL and must be assembled from sources. The
|
||||||
@@ -87,16 +87,15 @@ OBJS += inet_addr.o inet_network.o inet_netof.o \
|
|||||||
inet_ntoa.o inet_lnaof.o inet_maddr.o
|
inet_ntoa.o inet_lnaof.o inet_maddr.o
|
||||||
|
|
||||||
# libc/compat
|
# libc/compat
|
||||||
OBJS += creat.o ftime.o gethostid.o memccpy.o memchr.o \
|
OBJS += creat.o ftime.o gethostid.o gtty.o memccpy.o memchr.o \
|
||||||
memcmp.o memcpy.o memset.o nice.o pause.o rand.o \
|
memcmp.o memcpy.o memset.o nice.o pause.o rand.o \
|
||||||
sethostid.o setregid.o setreuid.o setrgid.o setruid.o \
|
sethostid.o setregid.o setreuid.o setrgid.o setruid.o \
|
||||||
sigcompat.o strchr.o strrchr.o times.o tmpnam.o \
|
sigcompat.o strchr.o strrchr.o stty.o times.o tmpnam.o \
|
||||||
utime.o
|
utime.o
|
||||||
|
|
||||||
# libc/runtime
|
# libc/runtime
|
||||||
OBJS += addsf3.o comparesf2.o divsf3.o fixsfsi.o floatsisf.o \
|
OBJS += addsf3.o comparesf2.o divsf3.o fixsfsi.o floatsisf.o \
|
||||||
mulsf3.o negsf2.o subsf3.o sc_case.o fixunssfsi.o \
|
mulsf3.o negsf2.o subsf3.o sc_case.o
|
||||||
floatunsisf.o
|
|
||||||
|
|
||||||
all: ../libc.a
|
all: ../libc.a
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ include $(TOPSRC)/target.mk
|
|||||||
|
|
||||||
vpath %.c $(TOPSRC)/src/libcurses
|
vpath %.c $(TOPSRC)/src/libcurses
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
CFLAGS += -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
||||||
|
|
||||||
OBJS = addch.o addstr.o box.o clear.o clrtobot.o clrtoeol.o cr_put.o \
|
OBJS = addch.o addstr.o box.o clear.o clrtobot.o clrtoeol.o cr_put.o \
|
||||||
cr_tty.o curses.o delch.o deleteln.o delwin.o endwin.o erase.o \
|
cr_tty.o curses.o delch.o deleteln.o delwin.o endwin.o erase.o \
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
TOPSRC = $(shell cd ../..; pwd)
|
|
||||||
include $(TOPSRC)/target.mk
|
|
||||||
|
|
||||||
vpath %.c $(TOPSRC)/src/libgpanel
|
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
|
||||||
|
|
||||||
OBJS = open.o clear.o pixel.o line.o rect.o fill.o fill_triangle.o \
|
|
||||||
circle.o image.o char.o text.o text_width.o
|
|
||||||
|
|
||||||
all: ../libgpanel.a
|
|
||||||
|
|
||||||
../libgpanel.a: ../ar ../ranlib $(OBJS)
|
|
||||||
../ar rc $@ $(OBJS)
|
|
||||||
../ranlib $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ *.o a.out *.a
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
TOPSRC = $(shell cd ../..; pwd)
|
|
||||||
include $(TOPSRC)/target.mk
|
|
||||||
|
|
||||||
vpath %.c $(TOPSRC)/src/libm
|
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
|
||||||
|
|
||||||
OBJS = asin.o atan.o exp.o erf.o floor.o fmod.o hypot.o j0.o j1.o \
|
|
||||||
jn.o log.o pow.o sin.o sinh.o sqrt.o tan.o tanh.o
|
|
||||||
|
|
||||||
all: ../libm.a
|
|
||||||
|
|
||||||
../libm.a: ../ar ../ranlib $(OBJS)
|
|
||||||
../ar rc $@ $(OBJS)
|
|
||||||
../ranlib $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ *.o a.out *.a
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
TOPSRC = $(shell cd ../..; pwd)
|
|
||||||
include $(TOPSRC)/target.mk
|
|
||||||
|
|
||||||
vpath %.c $(TOPSRC)/src/libreadline
|
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
|
||||||
|
|
||||||
OBJS = readline.o
|
|
||||||
|
|
||||||
all: ../libreadline.a
|
|
||||||
|
|
||||||
../libreadline.a: ../ar ../ranlib $(OBJS)
|
|
||||||
../ar rc $@ $(OBJS)
|
|
||||||
../ranlib $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ *.o a.out *.a
|
|
||||||
@@ -3,7 +3,7 @@ include $(TOPSRC)/target.mk
|
|||||||
|
|
||||||
vpath %.c $(TOPSRC)/src/libtermlib
|
vpath %.c $(TOPSRC)/src/libtermlib
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
CFLAGS += -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
||||||
|
|
||||||
OBJS = termcap.o tgoto.o tputs.o tcattr.o
|
OBJS = termcap.o tgoto.o tputs.o tcattr.o
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ include $(TOPSRC)/target.mk
|
|||||||
|
|
||||||
vpath %.c $(TOPSRC)/src/libwiznet
|
vpath %.c $(TOPSRC)/src/libwiznet
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
CFLAGS += -B$(TOPSRC)/lib/ $(DEFS) -Wa,-x -Wall -Werror
|
||||||
|
|
||||||
OBJS = w5100.o socket.o ethernet.o client.o server.o udp.o
|
OBJS = w5100.o socket.o ethernet.o client.o server.o udp.o
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ TOPSRC = $(shell cd ../..; pwd)
|
|||||||
include $(TOPSRC)/target.mk
|
include $(TOPSRC)/target.mk
|
||||||
vpath %.c $(TOPSRC)/src/startup-mips
|
vpath %.c $(TOPSRC)/src/startup-mips
|
||||||
|
|
||||||
CFLAGS = -Os -B$(TOPSRC)/lib/ -Wa,-x $(DEFS)
|
CFLAGS = -B$(TOPSRC)/lib/ -O -Wa,-x $(DEFS)
|
||||||
|
|
||||||
OBJS = ../crt0.o
|
OBJS = ../crt0.o
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
echo 'erase ^?, kill ^U, intr ^C'
|
|
||||||
stty dec
|
|
||||||
PATH=/bin:/sbin:/etc
|
|
||||||
export PATH
|
|
||||||
HOME=/
|
|
||||||
export HOME
|
|
||||||
export TERM
|
|
||||||
2716
rootfs.manifest
2716
rootfs.manifest
File diff suppressed because it is too large
Load Diff
5
share/.gitignore
vendored
5
share/.gitignore
vendored
@@ -1,6 +1,3 @@
|
|||||||
calendar
|
|
||||||
emg.keys
|
|
||||||
misc
|
|
||||||
re.help
|
re.help
|
||||||
|
misc
|
||||||
unixbench
|
unixbench
|
||||||
zoneinfo
|
|
||||||
|
|||||||
25486
share/dict/words
25486
share/dict/words
File diff suppressed because it is too large
Load Diff
@@ -4,6 +4,9 @@ all: ashello echo
|
|||||||
ashello: ashello.o
|
ashello: ashello.o
|
||||||
$(LD) ashello.o -o $@
|
$(LD) ashello.o -o $@
|
||||||
|
|
||||||
|
chello: chello.o
|
||||||
|
$(CC) chello.o -o $@
|
||||||
|
|
||||||
echo: echo.o
|
echo: echo.o
|
||||||
$(LD) $@.o -o $@
|
$(LD) $@.o -o $@
|
||||||
|
|
||||||
30
share/example/Makefile-host
Normal file
30
share/example/Makefile-host
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
TOPSRC = $(shell cd ../..; pwd)
|
||||||
|
include $(TOPSRC)/target.mk
|
||||||
|
|
||||||
|
CFLAGS += -Werror
|
||||||
|
ASFLAGS += -DCROSS
|
||||||
|
ASLDFLAGS = --oformat=elf32-tradlittlemips -N -nostartfiles -T $(TOPSRC)/src/elf32-mips.ld
|
||||||
|
|
||||||
|
all: hello cplus
|
||||||
|
|
||||||
|
hello: hello.o
|
||||||
|
${CC} ${LDFLAGS} -o hello.elf hello.o ${LIBS}
|
||||||
|
${OBJDUMP} -S hello.elf > hello.dis
|
||||||
|
${SIZE} hello.elf
|
||||||
|
${ELF2AOUT} hello.elf $@
|
||||||
|
|
||||||
|
cplus: cplus.o
|
||||||
|
${CXX} ${LDFLAGS} -nostdlib -o cplus.elf cplus.o ${LIBS}
|
||||||
|
${OBJDUMP} -S cplus.elf > cplus.dis
|
||||||
|
${SIZE} cplus.elf
|
||||||
|
${ELF2AOUT} cplus.elf $@
|
||||||
|
|
||||||
|
echo: echo.o
|
||||||
|
${LD} ${ASLDFLAGS} -o $@.elf $@.o
|
||||||
|
${OBJDUMP} -S $@.elf > $@.dis
|
||||||
|
${SIZE} $@.elf
|
||||||
|
${ELF2AOUT} $@.elf $@
|
||||||
|
./aout $@ > $@.dis
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o *.elf ${MAN} hello cplus *.elf *.dis tags *~
|
||||||
7
share/example/chello.c
Normal file
7
share/example/chello.c
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
printf ("Hello, C World!\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
TOPSRC = $(shell cd ../../..; pwd)
|
|
||||||
include $(TOPSRC)/target.mk
|
|
||||||
|
|
||||||
CFLAGS += -Werror
|
|
||||||
ASFLAGS += -DCROSS
|
|
||||||
ASLDFLAGS = --oformat=elf32-tradlittlemips -N -nostartfiles -T $(TOPSRC)/src/elf32-mips.ld
|
|
||||||
|
|
||||||
all: echo
|
|
||||||
|
|
||||||
echo: echo.o
|
|
||||||
${LD} ${ASLDFLAGS} -o $@.elf $@.o
|
|
||||||
${OBJDUMP} -S $@.elf > $@.dis
|
|
||||||
${SIZE} $@.elf
|
|
||||||
${ELF2AOUT} $@.elf $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *.o *.elf ${MAN} echo *.elf *.dis tags *~
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
CC = cc
|
|
||||||
PROG = hello stdarg skeleton primelist primesum test1 test2 test3 \
|
|
||||||
gpio adc rain q8 tetris lcd6
|
|
||||||
|
|
||||||
all: $(PROG)
|
|
||||||
|
|
||||||
hello: hello.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
stdarg: stdarg.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
skeleton: skeleton.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
primelist: primelist.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
primesum: primesum.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
gpio: gpio.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
adc: adc.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
rain: rain.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
q8: q8.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
tetris: tetris.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
lcd6: lcd6.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
test1: test1.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
test2: test2.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
test3: test3.c
|
|
||||||
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $?
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *.o *~ $(PROG)
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
TOPSRC = $(shell cd ../../..; pwd)
|
|
||||||
include $(TOPSRC)/target.mk
|
|
||||||
|
|
||||||
CFLAGS += -Werror -Wall
|
|
||||||
|
|
||||||
all: chello stdarg lcd6
|
|
||||||
|
|
||||||
chello: chello.o
|
|
||||||
${CC} ${LDFLAGS} -o chello.elf chello.o ${LIBS}
|
|
||||||
${OBJDUMP} -S chello.elf > chello.dis
|
|
||||||
${SIZE} chello.elf
|
|
||||||
${ELF2AOUT} chello.elf $@
|
|
||||||
|
|
||||||
tetris: tetris.o
|
|
||||||
${CC} ${LDFLAGS} -o tetris.elf tetris.o ${LIBS}
|
|
||||||
${OBJDUMP} -S tetris.elf > tetris.dis
|
|
||||||
${SIZE} tetris.elf
|
|
||||||
${ELF2AOUT} tetris.elf $@
|
|
||||||
|
|
||||||
lcd6: lcd6.o
|
|
||||||
${CC} ${LDFLAGS} -o lcd6.elf lcd6.o ${LIBS}
|
|
||||||
${OBJDUMP} -S lcd6.elf > lcd6.dis
|
|
||||||
${SIZE} lcd6.elf
|
|
||||||
${ELF2AOUT} lcd6.elf $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *.o *.elf ${MAN} chello stdarg lcd6 *.elf *.dis tags *~
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
/*
|
|
||||||
* Example of reading ADC data.
|
|
||||||
*/
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
char buf[100];
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
int i, fd, value;
|
|
||||||
|
|
||||||
for (i=0; i<16; i++) {
|
|
||||||
sprintf(buf, "/dev/adc%d", i);
|
|
||||||
fd = open(buf, O_RDWR);
|
|
||||||
if (fd < 0) {
|
|
||||||
printf("Error: unable to open %s\n", buf);
|
|
||||||
} else {
|
|
||||||
if (read(fd, buf, 20) > 0) {
|
|
||||||
value = strtol (buf, 0, 0);
|
|
||||||
printf("adc%-2d = %d\n", i, value);
|
|
||||||
}
|
|
||||||
close(fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
/*
|
|
||||||
* Example of polling general purpose i/o pins.
|
|
||||||
*/
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <sys/gpio.h>
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
int fd, pnum, value;
|
|
||||||
|
|
||||||
fd = open ("/dev/porta", O_RDWR);
|
|
||||||
if (fd < 0) {
|
|
||||||
perror ("/dev/porta");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (pnum=0; pnum<7; pnum++) {
|
|
||||||
value = ioctl (fd, GPIO_POLL | GPIO_PORT (pnum), 0);
|
|
||||||
if (value < 0)
|
|
||||||
perror ("GPIO_POLL");
|
|
||||||
printf ("port%c = 0x%04x\n", pnum + 'A', value);
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
printf ("Hello, C World!\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -1,287 +0,0 @@
|
|||||||
/*
|
|
||||||
* Demo for 6 digit LCD module based on HT1261 controller.
|
|
||||||
* Based on example sources from http://www.canton-electronics.com
|
|
||||||
*
|
|
||||||
* Copyright (C) 2015 Serge Vakulenko
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, and distribute this software
|
|
||||||
* and its documentation for any purpose and without fee is hereby
|
|
||||||
* granted, provided that the above copyright notice appear in all
|
|
||||||
* copies and that both that the copyright notice and this
|
|
||||||
* permission notice and warranty disclaimer appear in supporting
|
|
||||||
* documentation, and that the name of the author not be used in
|
|
||||||
* advertising or publicity pertaining to distribution of the
|
|
||||||
* software without specific, written prior permission.
|
|
||||||
*
|
|
||||||
* The author disclaim all warranties with regard to this
|
|
||||||
* software, including all implied warranties of merchantability
|
|
||||||
* and fitness. In no event shall the author be liable for any
|
|
||||||
* special, indirect or consequential damages or any damages
|
|
||||||
* whatsoever resulting from loss of use, data or profits, whether
|
|
||||||
* in an action of contract, negligence or other tortious action,
|
|
||||||
* arising out of or in connection with the use or performance of
|
|
||||||
* this software.
|
|
||||||
*/
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/time.h>
|
|
||||||
#include <sys/gpio.h>
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Digits, decimal dots and battery levels:
|
|
||||||
* A B C D E F
|
|
||||||
* -- -- -- -- -- -- z
|
|
||||||
* | | | | | | | | | | | | y
|
|
||||||
* -- -- -- -- -- -- x
|
|
||||||
* | | | | | | | | | | | |
|
|
||||||
* -- -- -- c -- d -- e --
|
|
||||||
*
|
|
||||||
* Memory map:
|
|
||||||
* Byte 0, bits 0-6 - segments of digit 'F'
|
|
||||||
* Byte 0, bit 7 - decimal dot 'e'
|
|
||||||
* Byte 1, bits 0-6 - segments of digit 'E'
|
|
||||||
* Byte 1, bit 7 - decimal dot 'd'
|
|
||||||
* Byte 2, bits 0-6 - segments of digit 'D'
|
|
||||||
* Byte 2, bit 7 - decimal dot 'c'
|
|
||||||
* Byte 3, bits 0-6 - segments of digit 'C'
|
|
||||||
* Byte 3, bit 7 - battery level 'x'
|
|
||||||
* Byte 4, bits 0-6 - segments of digit 'B'
|
|
||||||
* Byte 4, bit 7 - battery level 'y'
|
|
||||||
* Byte 5, bits 0-6 - segments of digit 'A'
|
|
||||||
* Byte 5, bit 7 - battery level 'z'
|
|
||||||
*
|
|
||||||
* Segments are mapped to bits 0-6:
|
|
||||||
* --4--
|
|
||||||
* 0---5
|
|
||||||
* --1--
|
|
||||||
* 2---6
|
|
||||||
* --3--
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Signal assignment.
|
|
||||||
* LED modulee is connected to pins 16,17,18 of Fubarino SD board.
|
|
||||||
*
|
|
||||||
* Fubarino PIC32 LED module
|
|
||||||
* --------------------------
|
|
||||||
* 16 RE0 CS
|
|
||||||
* 17 RE1 WR
|
|
||||||
* 18 RE2 DATA
|
|
||||||
*/
|
|
||||||
#define gpio_cs_clear() ioctl(gpio, GPIO_PORTE | GPIO_CLEAR, 1 << 0)
|
|
||||||
#define gpio_cs_set() ioctl(gpio, GPIO_PORTE | GPIO_SET, 1 << 0)
|
|
||||||
#define gpio_wr_clear() ioctl(gpio, GPIO_PORTE | GPIO_CLEAR, 1 << 1)
|
|
||||||
#define gpio_wr_set() ioctl(gpio, GPIO_PORTE | GPIO_SET, 1 << 1)
|
|
||||||
#define gpio_data_clear() ioctl(gpio, GPIO_PORTE | GPIO_CLEAR, 1 << 2)
|
|
||||||
#define gpio_data_set() ioctl(gpio, GPIO_PORTE | GPIO_SET, 1 << 2)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* HT1621 commands
|
|
||||||
*/
|
|
||||||
#define HT_SYS_DIS 0x00 /* Turn off system osc and bias generator */
|
|
||||||
#define HT_SYS_EN 0x01 /* Turn on system oscillator */
|
|
||||||
#define HT_LCD_OFF 0x02 /* Turn off LCD bias generator */
|
|
||||||
#define HT_LCD_ON 0x03 /* Turn on LCD bias generator */
|
|
||||||
#define HT_CLOCK_XTAL 0x14 /* Crystal 32kHz */
|
|
||||||
#define HT_CLOCK_RC 0x18 /* On-chip RC oscillator 256kHz */
|
|
||||||
#define HT_CLOCK_EXT 0x1c /* External clock */
|
|
||||||
#define HT_BIAS_1_3 0x21 /* LCD 1/3 bias option, 2 commons default */
|
|
||||||
#define HT_COMMONS_3 0x04 /* 3 commons option */
|
|
||||||
#define HT_COMMONS_4 0x08 /* 4 commons option */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Mapping of symbols to segments.
|
|
||||||
* 0, 1, 2, 3, 4, 5, 6, 7,
|
|
||||||
* 8, 9, A, b, C, c, d, E,
|
|
||||||
* F, H, h, L, n, N, o, P,
|
|
||||||
* r, t, U, -, ,
|
|
||||||
*/
|
|
||||||
const char char_to_segm[] = {
|
|
||||||
0x7D, 0x60, 0x3E, 0x7A, 0x63, 0x5B, 0x5F, 0x70,
|
|
||||||
0x7F, 0x7B, 0x77, 0x4F, 0x1D, 0x0E, 0x6E, 0x1F,
|
|
||||||
0x17, 0x67, 0x47, 0x0D, 0x46, 0x75, 0x37, 0x06,
|
|
||||||
0x0F, 0x6D, 0x02, 0x00,
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* File descriptor for GPIO driver.
|
|
||||||
*/
|
|
||||||
int gpio;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Suspend the process for some amount of milliseconds.
|
|
||||||
*/
|
|
||||||
void mdelay(unsigned msec)
|
|
||||||
{
|
|
||||||
usleep(msec * 1000);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Send a series of bits to HT1621.
|
|
||||||
* Up to 8 bits, high bit first.
|
|
||||||
* Max clock rate is 150kHz.
|
|
||||||
*/
|
|
||||||
void ht_send(int nbits, int data)
|
|
||||||
{
|
|
||||||
data <<= (8 - nbits);
|
|
||||||
gpio_wr_clear();
|
|
||||||
while (nbits-- > 0) {
|
|
||||||
if (data & 0x80)
|
|
||||||
gpio_data_set();
|
|
||||||
else
|
|
||||||
gpio_data_clear();
|
|
||||||
gpio_wr_set();
|
|
||||||
gpio_wr_clear();
|
|
||||||
data <<= 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Send command to HT1621.
|
|
||||||
*/
|
|
||||||
void ht_cmd(int command)
|
|
||||||
{
|
|
||||||
gpio_cs_clear();
|
|
||||||
ht_send(3, 0x4); /* Mode "100" */
|
|
||||||
ht_send(8, command);
|
|
||||||
gpio_cs_set();
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Send data and command.
|
|
||||||
*/
|
|
||||||
void ht_write(int addr, int data)
|
|
||||||
{
|
|
||||||
gpio_cs_clear();
|
|
||||||
ht_send(3, 0x5); /* Mode "101" */
|
|
||||||
ht_send(6, addr << 1); /* Half-byte address 6 bits */
|
|
||||||
ht_send(8, data); /* Data 8 bits */
|
|
||||||
gpio_cs_set();
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Initialize LCD controller.
|
|
||||||
*/
|
|
||||||
void lcd_init()
|
|
||||||
{
|
|
||||||
/* Open GPIO driver. */
|
|
||||||
gpio = open("/dev/porta", 1);
|
|
||||||
if (gpio < 0) {
|
|
||||||
perror("/dev/porta");
|
|
||||||
exit(-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Configure pins RE0-RE2 as outputs. */
|
|
||||||
ioctl(gpio, GPIO_PORTE | GPIO_CONFOUT, 0x07);
|
|
||||||
gpio_cs_set();
|
|
||||||
gpio_wr_clear();
|
|
||||||
|
|
||||||
/* Setup appropriate HT1621 mode. */
|
|
||||||
ht_cmd(HT_SYS_EN);
|
|
||||||
ht_cmd(HT_CLOCK_RC);
|
|
||||||
ht_cmd(HT_BIAS_1_3 | HT_COMMONS_4);
|
|
||||||
ht_cmd(HT_LCD_ON);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Set display memory to given value.
|
|
||||||
*/
|
|
||||||
void lcd_clear(int value)
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i=0; i<6; i++) {
|
|
||||||
ht_write(i, value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* LCD on/off.
|
|
||||||
*/
|
|
||||||
void lcd_enable(int on)
|
|
||||||
{
|
|
||||||
if (on)
|
|
||||||
ht_cmd(HT_LCD_ON);
|
|
||||||
else
|
|
||||||
ht_cmd(HT_LCD_OFF);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Display data.
|
|
||||||
* val - Data to be displayed, 0-999999
|
|
||||||
* dot - Display decimal dot, 0-3
|
|
||||||
* bat - Battery level, 0-3
|
|
||||||
*/
|
|
||||||
void lcd_display(unsigned val, int dot, int bat)
|
|
||||||
{
|
|
||||||
int i, byte[6];
|
|
||||||
|
|
||||||
/* Set numeric value. */
|
|
||||||
byte[5] = char_to_segm[val / 100000];
|
|
||||||
byte[4] = char_to_segm[(val / 10000) % 10];
|
|
||||||
byte[3] = char_to_segm[(val / 1000) % 10];
|
|
||||||
byte[2] = char_to_segm[(val / 100) % 10];
|
|
||||||
byte[1] = char_to_segm[(val / 10) % 10];
|
|
||||||
byte[0] = char_to_segm[val % 10];
|
|
||||||
|
|
||||||
/* Enable decimal dot/ */
|
|
||||||
switch (dot) {
|
|
||||||
case 1:
|
|
||||||
byte[0] |= 1 << 7;
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
byte[1] |= 1 << 7;
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
byte[2] |= 1 << 7;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (bat > 0)
|
|
||||||
byte[3] |= 1 << 7;
|
|
||||||
if (bat > 1)
|
|
||||||
byte[4] |= 1 << 7;
|
|
||||||
if (bat > 2)
|
|
||||||
byte[5] |= 1 << 7;
|
|
||||||
|
|
||||||
for (i=0; i<6; i++) {
|
|
||||||
ht_write(i, byte[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
|
|
||||||
/* Initialize hardware. */
|
|
||||||
lcd_init();
|
|
||||||
|
|
||||||
/* Blink all segments twice. */
|
|
||||||
lcd_clear(0xff);
|
|
||||||
mdelay(1000);
|
|
||||||
lcd_clear(0);
|
|
||||||
mdelay(1000);
|
|
||||||
lcd_clear(0xff);
|
|
||||||
mdelay(1000);
|
|
||||||
lcd_clear(0);
|
|
||||||
mdelay(1000);
|
|
||||||
|
|
||||||
/* Show all characters on all segments. */
|
|
||||||
for (i=0; i<sizeof(char_to_segm); i++) {
|
|
||||||
lcd_clear(char_to_segm[i]);
|
|
||||||
mdelay(200);
|
|
||||||
}
|
|
||||||
lcd_clear(0);
|
|
||||||
|
|
||||||
/* Display counter 0 to 999999. */
|
|
||||||
for (;;) {
|
|
||||||
for (i=0; i<999999; i++) {
|
|
||||||
lcd_display(i, i/10%4, i/10%4);
|
|
||||||
mdelay(100);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
/*
|
|
||||||
* Print the list of prime numbers up to 100.
|
|
||||||
*/
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int isprime(int);
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
int n;
|
|
||||||
|
|
||||||
for (n=2; n<100; ++n) {
|
|
||||||
if (isprime(n)) {
|
|
||||||
printf("%d ", n);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
printf("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
int isprime(int n)
|
|
||||||
{
|
|
||||||
int j;
|
|
||||||
|
|
||||||
if (n == 2)
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
if (n % 2 == 0)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
for (j=3; j*j<=n; j+=2)
|
|
||||||
if (n % j == 0)
|
|
||||||
return 0;
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
/*
|
|
||||||
* Compute the sum of prime numbers up to 10000.
|
|
||||||
*/
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int isprime(int);
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
int sum, n;
|
|
||||||
|
|
||||||
sum = 0;
|
|
||||||
for (n=2; n<10000; ++n) {
|
|
||||||
if (isprime(n)) {
|
|
||||||
sum += n;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
printf("Sum of primes less than 10000: %d\n", sum);
|
|
||||||
}
|
|
||||||
|
|
||||||
int isprime(int n)
|
|
||||||
{
|
|
||||||
int j;
|
|
||||||
|
|
||||||
if (n == 2)
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
if (n % 2 == 0)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
for (j=3; j*j<=n; j+=2)
|
|
||||||
if (n % j == 0)
|
|
||||||
return 0;
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user