diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2013-11-23 01:05:33 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2013-11-23 01:05:33 +0100 |
commit | 2f9ae0f8ac8610e13ced184847b57b87fe5db580 (patch) | |
tree | f9ad2223d518585a2cfe9ea1c73e1e37d07bf637 /sys/src/cmd/unix/drawterm/kern/stub.c | |
parent | ea5797c0731203c09ec5fb7172e77eab2750f1a9 (diff) |
removing (outdated) drawterm
drawterm is much better maintained by russ cox,
so removing this outdated copy.
for a more recent version, go to:
http://swtch.com/drawterm/
Diffstat (limited to 'sys/src/cmd/unix/drawterm/kern/stub.c')
-rw-r--r-- | sys/src/cmd/unix/drawterm/kern/stub.c | 171 |
1 files changed, 0 insertions, 171 deletions
diff --git a/sys/src/cmd/unix/drawterm/kern/stub.c b/sys/src/cmd/unix/drawterm/kern/stub.c deleted file mode 100644 index d9c690638..000000000 --- a/sys/src/cmd/unix/drawterm/kern/stub.c +++ /dev/null @@ -1,171 +0,0 @@ -#include "u.h" -#include "lib.h" -#include "dat.h" -#include "fns.h" -#include "error.h" - -void -mallocsummary(void) -{ -} - -void -pagersummary(void) -{ -} - -int -iseve(void) -{ - return 1; -} - -void -setswapchan(Chan *c) -{ - USED(c); -} - -void -splx(int x) -{ - USED(x); -} - -int -splhi(void) -{ - return 0; -} - -int -spllo(void) -{ - return 0; -} - -void -procdump(void) -{ -} - -void -scheddump(void) -{ -} - -void -killbig(void) -{ -} - -void -dumpstack(void) -{ -} - -void -xsummary(void) -{ -} - -void -rebootcmd(int argc, char **argv) -{ - USED(argc); - USED(argv); -} - -void -kickpager(void) -{ -} - -int -userwrite(char *a, int n) -{ - error(Eperm); - return 0; -} - -vlong -todget(vlong *p) -{ - if(p) - *p = 0; - return 0; -} - -void -todset(vlong a, vlong b, int c) -{ - USED(a); - USED(b); - USED(c); -} - -void -todsetfreq(vlong a) -{ - USED(a); -} - -long -hostdomainwrite(char *a, int n) -{ - USED(a); - USED(n); - error(Eperm); - return 0; -} - -long -hostownerwrite(char *a, int n) -{ - USED(a); - USED(n); - error(Eperm); - return 0; -} - -void -todinit(void) -{ -} - -void -rdb(void) -{ -} - -void -setmalloctag(void *v, uintptr tag) -{ - USED(v); - USED(tag); -} - -int -postnote(Proc *p, int x, char *msg, int flag) -{ - USED(p); - USED(x); - USED(msg); - USED(flag); - return 0; -} - -void -exhausted(char *s) -{ - panic("out of %s", s); -} - -uvlong -fastticks(uvlong *v) -{ - if(v) - *v = 1; - return 0; -} - |