tIgnore unknown pragmas. Be less verbose when allocating uprocs. Don't drop core dump turds all over the place when x11 goes away. - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 115d4c0afcef94eb1ba888e3977736138e1721e0
 (DIR) parent b1455f33a8a7b6826fcb0d4b3f4849e322755d28
 (HTM) Author: wkj <devnull@localhost>
       Date:   Mon,  3 May 2004 17:26:17 +0000
       
       Ignore unknown pragmas.
       Be less verbose when allocating uprocs.
       Don't drop core dump turds all over the place when x11 goes away.
       
       Diffstat:
         M bin/9c                              |       1 +
         A src/cmd/.cvsignore                  |       5 +++++
         M src/lib9/_p9proc.c                  |       2 +-
         M src/libdraw/x11-init.c              |       3 ++-
         A src/libsec/386/.cvsignore           |       2 ++
       
       5 files changed, 11 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/bin/9c b/bin/9c
       t@@ -12,6 +12,7 @@ usegcc()
                        -Wno-switch \
                        -Wno-comment \
                        -Wno-sign-compare \
       +                -Wno-unknown-pragmas \
                        -fno-omit-frame-pointer \
                "
                # want to put -fno-optimize-sibling-calls here but
 (DIR) diff --git a/src/cmd/.cvsignore b/src/cmd/.cvsignore
       t@@ -0,0 +1,5 @@
       +o.*
       +bc.tab.c
       +bc.tab.h
       +units.tab.c
       +units.tab.h
 (DIR) diff --git a/src/lib9/_p9proc.c b/src/lib9/_p9proc.c
       t@@ -54,7 +54,7 @@ _p9uproc(int inhandler)
                while((up = mallocz(sizeof(Uproc), 1)) == nil)
                        sleep(1000);
        
       -fprint(2, "alloc uproc for pid %d\n", pid);
       +//fprint(2, "alloc uproc for pid %d\n", pid);
                up->pid = pid;
                lock(&uproclock);
                h = pid%PIDHASH;
 (DIR) diff --git a/src/libdraw/x11-init.c b/src/libdraw/x11-init.c
       t@@ -173,7 +173,8 @@ xerror(XDisplay *d, XErrorEvent *e)
        static int
        xioerror(XDisplay *d)
        {
       -        print("X I/O error\n");
       +        //print("X I/O error\n");
       +        sysfatal("X I/O error\n");
                abort();
                return -1;
        }
 (DIR) diff --git a/src/libsec/386/.cvsignore b/src/libsec/386/.cvsignore
       t@@ -0,0 +1,2 @@
       +md5block.s
       +sha1block.s