From owner-freebsd-bugs Sun Nov 19 3:50:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5531237B479 for ; Sun, 19 Nov 2000 03:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA35233; Sun, 19 Nov 2000 03:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 19 Nov 2000 03:50:04 -0800 (PST) Message-Id: <200011191150.DAA35233@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: oh Subject: Re: kern/22874: newpcm CS461x sound problems Reply-To: oh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22874; it has been noted by GNATS. From: oh To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/22874: newpcm CS461x sound problems Date: Sun, 19 Nov 2000 11:45:56 +0000 This is a multi-part message in MIME format. --------------A6AB57816D389CF3F9D7AC4B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit This driver also fails to work in full duplex mode, blocking or non-blocking, on Lars' machine. Lars reported that rat did not work with this driver and so we've conducted a few experiments (rat problems mostly caused card by not supporting 8kHz sampling and newpcm accepting and reporting this as an acceptable rate, rat driver interface fixed and patch submitted to check rate bounds in dsp.c). The attached test program results in read buffer overruns, causing dump messages on syslog, at the lowest supported sampling rate (11025kHz). Lars observes: > [larse@hbo: ~] ./a.out -r 11025 > Device Caps: > Sample rates: 11025 -- 48000 Hz > Formats: 0x90000010 > DMA buffer size: 65536 bytes > Mixers: 0x00000001 Inputs: 0x017049f1 > Levels: 100 (left), 100 (right) > Set play rate 11025 fmt 16 > Set record rate 11025 fmt 16 > Got play rate 11025 fmt 16 > Got record rate 11025 fmt 16 > Block size requested 1024, play 1024, rec 1024 > Output buffer status: frags 2 frags total 2 fragsize 1024 bytes 2048 > Input buffer status: frags 0 frags total 2 fragsize 1024 bytes 0 > |^C > > Saw this in syslog during that run: > Nov 17 10:14:10 hbo /kernel: pcm0: record overrun, dumping 22528 bytes > Nov 17 10:14:26 hbo last message repeated 16 times Kind Regards - Orion --------------A6AB57816D389CF3F9D7AC4B Content-Type: text/plain; charset=us-ascii; name="full-duplex-blocking-audio-test3.c" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="full-duplex-blocking-audio-test3.c" #include #include #include #include #include #include #include #define SAMPLE_BLKSZ 1024 #define AUDIO_IOCTL(fd, cmd, val) \ if (ioctl((fd), (cmd), (val)) < 0) { \ fprintf(stderr, "Failed %s - line %d\n",#cmd, __LINE__); \ exit(EX_UNAVAILABLE); \ } static void progress() { const char sym[]="-\\|/"; static int n; int m = n % (sizeof(sym) - 1); if (n == 0) { printf(" "); } printf("%c%c", '\b', sym[m]); fflush(stdout); n++; } int main(int argc, char *argv[]) { char *thedev = "/dev/audio"; uint16_t buf[SAMPLE_BLKSZ]; int c, fd, rlen, wlen, rate = 8000; while((c = getopt(argc, argv, "f:r:")) != -1) { switch(c) { case 'f': thedev = optarg; break; case 'r': rate = atoi(optarg); break; default: fprintf(stderr, "%s -f flag specifies audio device to test.\n", argv[0]); exit(EX_USAGE); } } fd = open(thedev, O_RDWR); if (fd > 0) { snd_chan_param pa; struct snd_size sz; audio_buf_info abi; snd_capabilities sc; int fragsz; AUDIO_IOCTL(fd, AIOGCAP, &sc); printf("Device Caps:\n\tSample rates: %d -- %d Hz\n", sc.rate_min, sc.rate_max); printf("\tFormats: 0x%08x\n\tDMA buffer size: %d bytes\n", sc.formats, sc.bufsize); printf("\tMixers: 0x%08x Inputs: 0x%08x\n", sc.mixers, sc.inputs); printf("\tLevels: %d (left), %d (right)\n", sc.left, sc.right); pa.play_rate = rate; pa.play_format = AFMT_S16_LE; pa.rec_rate = rate; pa.rec_format = AFMT_S16_LE; AUDIO_IOCTL(fd, AIOSFMT, &pa); fprintf(stdout, "Set play rate %d fmt %d\n", pa.play_rate, pa.play_format); fprintf(stdout, "Set record rate %d fmt %d\n", pa.rec_rate, pa.rec_format); AUDIO_IOCTL(fd, AIOGFMT, &pa); fprintf(stdout, "Got play rate %d fmt %d\n", pa.play_rate, pa.play_format); fprintf(stdout, "Got record rate %d fmt %d\n", pa.rec_rate, pa.rec_format); /* Put device in block mode and set block size */ sz.play_size = SAMPLE_BLKSZ; sz.rec_size = SAMPLE_BLKSZ; /* AUDIO_IOCTL(fd, AIOSSIZE, &sz); */ AUDIO_IOCTL(fd, AIOGSIZE, &sz); fprintf(stdout, "Block size requested %d, play %d, rec %d\n", SAMPLE_BLKSZ, sz.play_size, sz.rec_size); /* Set large number of fragment */ fragsz = SAMPLE_BLKSZ; AUDIO_IOCTL(fd, SNDCTL_DSP_SETFRAGMENT, &fragsz); AUDIO_IOCTL(fd, SNDCTL_DSP_GETOSPACE, &abi); fprintf(stdout, "Output buffer status: frags %d frags total %d fragsize %d bytes %d\n", abi.fragments, abi.fragstotal, abi.fragsize, abi.bytes); AUDIO_IOCTL(fd, SNDCTL_DSP_GETISPACE, &abi); fprintf(stdout, "Input buffer status: frags %d frags total %d fragsize %d bytes %d\n", abi.fragments, abi.fragstotal, abi.fragsize, abi.bytes); memset(buf, 0, sizeof(buf) / sizeof(buf[0])); while((rlen = read(fd, buf, sizeof(buf))) > 0) { fprintf(stderr, "Read %d\n", rlen); progress(); wlen = write(fd, buf, rlen); if (wlen != rlen) { fprintf(stderr, "write failed %d != %d\n", wlen, rlen); exit(EX_IOERR); } } } else { fprintf(stderr, "Could not open %s O_RDWR\n", thedev); exit(EX_OSFILE); } return 0; } --------------A6AB57816D389CF3F9D7AC4B-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 8:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FE0E37B479 for ; Sun, 19 Nov 2000 08:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA67557; Sun, 19 Nov 2000 08:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 94A5637B479 for ; Sun, 19 Nov 2000 08:19:32 -0800 (PST) Received: from olgeni.localdomain.net (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id 61AA23B010 for ; Sun, 19 Nov 2000 17:19:30 +0100 (CET) Received: (from olgeni@localhost) by olgeni.localdomain.net (8.11.1/8.11.1) id eAJGJXr01239; Sun, 19 Nov 2000 17:19:33 +0100 (CET) (envelope-from olgeni) Message-Id: <200011191619.eAJGJXr01239@olgeni.localdomain.net> Date: Sun, 19 Nov 2000 17:19:33 +0100 (CET) From: olgeni@uli.it Reply-To: olgeni@uli.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22958: Missing ATA_ENABLE_TAGS in LINT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22958 >Category: kern >Synopsis: Missing ATA_ENABLE_TAGS in -STABLE LINT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 19 08:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-BETA i386 >Organization: Colby >Environment: FreeBSD olgeni.localdomain.net 4.2-BETA FreeBSD 4.2-BETA #0: Sun Nov 19 15:41:33 CET 2000 root@olgeni.localdomain.net:/usr/obj/usr/src/sys/BSDBOX i386 >Description: The ATA_ENABLE_TAGS option is missing from /usr/src/sys/i386/conf/LINT, but it is explained in ata(4). >How-To-Repeat: >Fix: *** LINT.orig Sun Nov 19 17:06:12 2000 --- LINT Sun Nov 19 17:11:13 2000 *************** *** 1134,1142 **** --- 1134,1145 ---- # ATA_ENABLE_ATAPI_DMA: enable DMA on ATAPI device, since many ATAPI devices # claim to support DMA but doesn't actually work, this # is not enabled as default. + # ATA_ENABLE_TAGS: enable Tagged Queuing support (only IBM DPTA and + # DTLA drives support that) options ATA_STATIC_ID options ATA_ENABLE_ATAPI_DMA + options ATA_ENABLE_TAGS # # For older non-PCI systems, these are the lines to use: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 9:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 96B7037B479 for ; Sun, 19 Nov 2000 09:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA74289; Sun, 19 Nov 2000 09:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from sp02lap.hackerheaven.org (coolvibe.xs4all.nl [194.109.39.166]) by hub.freebsd.org (Postfix) with ESMTP id CFAEB37B479 for ; Sun, 19 Nov 2000 09:07:54 -0800 (PST) Received: (from root@localhost) by sp02lap.hackerheaven.org (8.9.3/8.9.3) id SAA67592; Sun, 19 Nov 2000 18:07:52 +0100 (CET) (envelope-from coolvibe) Message-Id: <200011191707.SAA67592@sp02lap.hackerheaven.org> Date: Sun, 19 Nov 2000 18:07:52 +0100 (CET) From: coolvibe@xs4all.nl Reply-To: coolvibe@xs4all.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22959: Kernel compilation faillure (syscons related) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22959 >Category: kern >Synopsis: Kernel compilation faillure (syscons related) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 19 09:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Emiel Kollof >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: Standard 4.1-RELEASE installation, tested on two different machines. >Description: Kernel compilation fails when specifying SC_NORM_REV_ATTR in schistory.c >How-To-Repeat: specify SC_NORM_REV_ATTR=("FG_WHITE|BG_RED") (or whatever you fancy) and just configure and build the kernel. Compilation will fail >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 9:36:52 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 928E537B479; Sun, 19 Nov 2000 09:36:50 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA76434; Sun, 19 Nov 2000 09:36:50 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 09:36:50 -0800 (PST) From: Message-Id: <200011191736.JAA76434@freefall.freebsd.org> To: fwancho@whc.net, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, dougb@FreeBSD.org Subject: Re: bin/22945: tftp (4.1.1-RELEASE) appears broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tftp (4.1.1-RELEASE) appears broken State-Changed-From-To: open->feedback State-Changed-By: dougb State-Changed-When: Sun Nov 19 09:35:07 PST 2000 State-Changed-Why: Could you please update to 4.2-RC and let us know if the problem still exists for you? Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 19 09:35:07 PST 2000 Responsible-Changed-Why: I'll handle the user's feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=22945 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 9:49:36 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2E3B37B479; Sun, 19 Nov 2000 09:49:35 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA77410; Sun, 19 Nov 2000 09:49:35 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 09:49:35 -0800 (PST) From: Message-Id: <200011191749.JAA77410@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, cg@FreeBSD.org Subject: Re: kern/22874: newpcm CS461x sound problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: newpcm CS461x sound problems Responsible-Changed-From-To: freebsd-bugs->cg Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 19 09:49:04 PST 2000 Responsible-Changed-Why: Cameron is responsible for pcm. http://www.freebsd.org/cgi/query-pr.cgi?pr=22874 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 9:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0447E37B479 for ; Sun, 19 Nov 2000 09:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA77462; Sun, 19 Nov 2000 09:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 19 Nov 2000 09:50:01 -0800 (PST) Message-Id: <200011191750.JAA77462@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: kern/22959: Kernel compilation faillure (syscons related) Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22959; it has been noted by GNATS. From: Peter Pentchev To: coolvibe@xs4all.nl Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/22959: Kernel compilation faillure (syscons related) Date: Sun, 19 Nov 2000 19:45:20 +0200 On Sun, Nov 19, 2000 at 06:07:52PM +0100, coolvibe@xs4all.nl wrote: > > >Number: 22959 > >Category: kern > >Synopsis: Kernel compilation faillure (syscons related) > >Originator: Emiel Kollof > >Release: FreeBSD 4.1-RELEASE i386 > >Organization: > >Environment: > > Standard 4.1-RELEASE installation, tested on two different machines. > > >Description: > > Kernel compilation fails when specifying SC_NORM_REV_ATTR in schistory.c > > >How-To-Repeat: > > specify SC_NORM_REV_ATTR=("FG_WHITE|BG_RED") (or whatever you fancy) and > just configure and build the kernel. Compilation will fail I cannot reproduce this on a 4.1.1-STABLE (4.2-BETA) system; I have just rebooted with a freshly-compiled kernel after I added the following line: options SC_NORM_REV_ATTR="(FG_WHITE|BG_RED)" to my kernel config file. Can you try updating your system to -STABLE and see if the problem persists? Also, you have not specified the exact error the build dies with; can you paste the last few lines of the 'make' output (basically, everything after the last line starting with 'cc -c -O')? G'luck, Peter -- This sentence contains exactly threee erors. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 10: 7:38 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00AB737B479; Sun, 19 Nov 2000 10:07:36 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA80689; Sun, 19 Nov 2000 10:07:36 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 10:07:36 -0800 (PST) From: Message-Id: <200011191807.KAA80689@freefall.freebsd.org> To: seraf@2600.com, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22954: cron isn't daylight savings-aware Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cron isn't daylight savings-aware State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 19 10:04:52 PST 2000 State-Changed-Why: The problems are actually much more complex than you describe. Ultimately, the advice in crontab(5) should be heeded, namely don't schedule jobs during that time period. http://www.freebsd.org/cgi/query-pr.cgi?pr=22954 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 10:25:30 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85BDB37B479; Sun, 19 Nov 2000 10:25:29 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA82582; Sun, 19 Nov 2000 10:25:29 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 10:25:29 -0800 (PST) From: Message-Id: <200011191825.KAA82582@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/22958: Missing ATA_ENABLE_TAGS in -STABLE LINT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Missing ATA_ENABLE_TAGS in -STABLE LINT Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 19 10:24:44 PST 2000 Responsible-Changed-Why: Soren is Mr. ATA. http://www.freebsd.org/cgi/query-pr.cgi?pr=22958 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 10:32: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from fnu.iranger.com (49dsl180.dsl.micron.net [206.206.49.180]) by hub.freebsd.org (Postfix) with ESMTP id 6CB7237B479; Sun, 19 Nov 2000 10:32:06 -0800 (PST) Received: from [171.69.113.18] (karma.cisco.com [171.69.113.18]) by fnu.iranger.com (8.11.1/8.11.0) with ESMTP id eAJIVwn05793; Sun, 19 Nov 2000 11:32:04 -0700 (MST) (envelope-from satz@iranger.com) User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Sun, 19 Nov 2000 11:31:56 -0700 Subject: Re: i386/22762: GENERIC kernel and others crash when probing disks with ahc controller From: Greg Satz To: , Message-ID: In-Reply-To: <200011181734.JAA86600@freefall.freebsd.org> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This seems to have resolved this issue. Thanks for the fast turn-around. Greg on 11/18/00 10:34 AM, gibbs@FreeBSD.org at gibbs@FreeBSD.org wrote: > Synopsis: GENERIC kernel and others crash when probing disks with ahc > controller > > State-Changed-From-To: open->closed > State-Changed-By: gibbs > State-Changed-When: Sat Nov 18 09:34:25 PST 2000 > State-Changed-Why: > Corrected in revs 1.106 and 1.94.2.6 of sys/dev/aic7xxx/aic7xxx.seq > > http://www.freebsd.org/cgi/query-pr.cgi?pr=22762 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 10:52: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE90037B479; Sun, 19 Nov 2000 10:52:02 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA85145; Sun, 19 Nov 2000 10:52:02 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 10:52:02 -0800 (PST) From: Message-Id: <200011191852.KAA85145@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: conf/22916: Ssh/sshd binaries lacks kerberos support (patch included) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ssh/sshd binaries lacks kerberos support (patch included) Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 19 10:51:39 PST 2000 Responsible-Changed-Why: Brian is Mr. ssh. http://www.freebsd.org/cgi/query-pr.cgi?pr=22916 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 11:42:30 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3628937B479; Sun, 19 Nov 2000 11:42:28 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA91040; Sun, 19 Nov 2000 11:42:28 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 11:42:28 -0800 (PST) From: Message-Id: <200011191942.LAA91040@freefall.freebsd.org> To: thompson@squirrel.tgsoft.com, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/3314: [PATCH] /etc/daily did not run on April 6, 1997 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] /etc/daily did not run on April 6, 1997 State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 19 11:39:45 PST 2000 State-Changed-Why: While your patch is very well done, the solutions to the problems which it addresses are by no means clear. In particular, for various reasons it may not be desirable to run a job anyway that got skipped by DST. The best advice is that given in crontab(5), namely don't schedule mission-critical jobs during that time period. http://www.freebsd.org/cgi/query-pr.cgi?pr=3314 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 11:44:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4783A37B65E; Sun, 19 Nov 2000 11:44:53 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA91256; Sun, 19 Nov 2000 11:44:53 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 11:44:53 -0800 (PST) From: Message-Id: <200011191944.LAA91256@freefall.freebsd.org> To: borjamar@sarenet.es, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, dougb@FreeBSD.org Subject: Re: bin/10825: daily script not executed or executed twice in summer time changes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: daily script not executed or executed twice in summer time changes State-Changed-From-To: open->analyzed State-Changed-By: dougb State-Changed-When: Sun Nov 19 11:43:12 PST 2000 State-Changed-Why: I just committed a fix to this problem in -Current, this'll help remind me to MFC it after the freeze. Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 19 11:43:12 PST 2000 Responsible-Changed-Why: I'm taking responsibility for this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=10825 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 11:56:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BD2937B479; Sun, 19 Nov 2000 11:56:24 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92630; Sun, 19 Nov 2000 11:56:24 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 11:56:24 -0800 (PST) From: Message-Id: <200011191956.LAA92630@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, markm@FreeBSD.org Subject: Re: gnu/21849: PERL_THREADED knob in /etc/default/make.conf does not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PERL_THREADED knob in /etc/default/make.conf does not work Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 19 11:55:49 PST 2000 Responsible-Changed-Why: Mark doesn't have enough perl-related PR's assigned to him already. http://www.freebsd.org/cgi/query-pr.cgi?pr=21849 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 12:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFF0537B4C5 for ; Sun, 19 Nov 2000 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA95598; Sun, 19 Nov 2000 12:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AF00437B479; Sun, 19 Nov 2000 12:07:59 -0800 (PST) Message-Id: <20001119200759.AF00437B479@hub.freebsd.org> Date: Sun, 19 Nov 2000 12:07:59 -0800 (PST) From: andrew@grillet98.freeserve.co.uk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/22961: New installation of 4.1.1 won't boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22961 >Category: i386 >Synopsis: New installation of 4.1.1 won't boot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 19 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Grillet >Release: 4.1.1 >Organization: Quickstart Technology Ltd >Environment: Not available It is a pentium 150 with two IDE drives (both mode 4) It was running FreeBSD 3.4 and earlier versions. >Description: I installed directly from the ISO image I downloaded. No errors were reported. At the reboot, I get the btx menu (F1, F3, F5)but when I select one it just beeps. Even the 'perfectly good' :-) DOS 5 partition won't boot any more. (Fixable by Fdisk /mbr) I have reinstalled several times, repartitioning, new labels, etc Same result every time. >How-To-Repeat: AFAICT the problem is unavoidable on my system. Install always fails. (Unwilling to try on other machines!) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 13:47:49 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id DDDB737B479 for ; Sun, 19 Nov 2000 13:47:47 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 19 Nov 2000 21:47:46 +0000 (GMT) Date: Sun, 19 Nov 2000 21:47:46 +0000 From: David Malone To: "Frank J. Wancho" Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/22945: tftp (4.1.1-RELEASE) appears broken Message-ID: <20001119214746.A52428@walton.maths.tcd.ie> References: <200011182350.PAA49604@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011182350.PAA49604@freefall.freebsd.org>; from fwancho@WHC.NET on Sat, Nov 18, 2000 at 03:50:02PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I did try to reproduce this problem on a -current machine, but had no luck. The tftp code in -current and 4.1.1 seems to be identical, so maybe we're missing something. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 14: 2:49 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from phalse.2600.com (phalse.2600.COM [216.66.24.2]) by hub.freebsd.org (Postfix) with ESMTP id 2579137B4C5; Sun, 19 Nov 2000 14:02:47 -0800 (PST) Received: from localhost (localhost [[UNIX: localhost]]) by phalse.2600.com (8.8.8/8.8.8) with ESMTP id RAA26143; Sun, 19 Nov 2000 17:02:46 -0500 (EST) Date: Sun, 19 Nov 2000 17:02:46 -0500 (EST) From: "H. ICHIKAWA" To: dougb@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org, opentrax@email.com Subject: Re: bin/22954: cron isn't daylight savings-aware In-Reply-To: <200011191807.KAA80689@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Your tell me not to schedule cron jobs during that time period, when the stock FreeBSD root crontab violates this principle. hmm.. > State-Changed-From-To: open->closed The problem persists. --Dominick On Sun, 19 Nov 2000 dougb@FreeBSD.org wrote: > Date: Sun, 19 Nov 2000 10:07:36 -0800 (PST) > From: dougb@FreeBSD.org > To: seraf@2600.com, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org > Subject: Re: bin/22954: cron isn't daylight savings-aware > > Synopsis: cron isn't daylight savings-aware > > State-Changed-From-To: open->closed > State-Changed-By: dougb > State-Changed-When: Sun Nov 19 10:04:52 PST 2000 > State-Changed-Why: > > The problems are actually much more complex than you describe. > Ultimately, the advice in crontab(5) should be heeded, namely > don't schedule jobs during that time period. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=22954 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 14:55:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 92DC537B479 for ; Sun, 19 Nov 2000 14:55:19 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id OAA29077; Sun, 19 Nov 2000 14:55:16 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A185A50.29C5CFC3@FreeBSD.org> Date: Sun, 19 Nov 2000 14:55:12 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "H. ICHIKAWA" Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/22954: cron isn't daylight savings-aware References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "H. ICHIKAWA" wrote: > > Your tell me not to schedule cron jobs during that time period, > when the stock FreeBSD root crontab violates this principle. hmm.. Your PR actually reminded me to commit a change to /etc/crontab to avoid just this issue, although presently it runs daily twice in the fall, and once in the spring which is better than once in the fall and never in spring (for regions that do the DST change at 2am anyway). Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 16: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D72B37B4CF for ; Sun, 19 Nov 2000 16:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA25441; Sun, 19 Nov 2000 16:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefour.acs.rpi.edu (freefour.acs.rpi.edu [128.113.24.91]) by hub.freebsd.org (Postfix) with ESMTP id A1C4737B479; Sun, 19 Nov 2000 15:51:31 -0800 (PST) Received: (from gad@localhost) by freefour.acs.rpi.edu (8.9.3/8.9.3) id SAA30775; Sun, 19 Nov 2000 18:51:26 -0500 (EST) (envelope-from gad) Message-Id: <200011192351.SAA30775@freefour.acs.rpi.edu> Date: Sun, 19 Nov 2000 18:51:26 -0500 (EST) From: Garance A Drosehn Reply-To: gad@eclipse.acs.rpi.edu To: FreeBSD-gnats-submit@freebsd.org Cc: gad@eclipse.acs.rpi.edu, gad@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22965: [PATCH] fix for minor bug in libc/gen/getcap.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22965 >Category: bin >Synopsis: [PATCH] fix for minor bug in libc/gen/getcap.c >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 19 16:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Garance A Drosehn >Release: FreeBSD 3.2-RELEASE i386 >Organization: RPI ; Troy NY >Environment: While compiling FreeBSD's lpr/lpd for use on some other platforms, I ran into a fairly nasty bug on redhat linux. As near as I can tell, the bug has existed in FreeBSD's 'getcap' for several years without it causing any known problems, but I do believe the code is wrong and should be fixed anyway. (while this send-pr is coming from a 3.2 system, the patch is for the source in freebsd-current, ie, 5.x as of Nov 2000) >Description: You probably don't want to know what the problem is under linux... However, the problem comes down to code which does: (void)fclose(pfp); if (ferror(pfp)) { ...do stuff... } According to the "single unix spec", the behavior of calling ANY "f-routine" on a closed stream is undefined. I take it to mean that's a bad idea. Certainly on linux it can trigger some major headaches. Also, I don't see what is to be gained by calling ferror in the above case. My change is just to USE the return code from fclose, instead of throwing it away, and have error-processing key off that instead of ferror. >How-To-Repeat: .na. >Fix: Here is the patch I propose. If no one objects to this, I can commit this patch sometime after thanksgiving. Or I would be more than happy if someone else wants to claim ownership of getcap, and they generate their own patch for it... :-) This also initializes global (static) variables to appropriate values, although that probably doesn't effect anything. Index: getcap.c =================================================================== RCS file: /home/ncvs/src/lib/libc/gen/getcap.c,v retrieving revision 1.12 diff -u -r1.12 getcap.c --- getcap.c 2000/05/21 02:55:09 1.12 +++ getcap.c 2000/11/19 23:09:15 @@ -62,9 +62,9 @@ #define TCERR (char)1 #define SHADOW (char)2 -static size_t topreclen; /* toprec length */ -static char *toprec; /* Additional record specified by cgetset() */ -static int gottoprec; /* Flag indicating retrieval of toprecord */ +static size_t topreclen = 0; /* toprec length */ +static char *toprec = NULL; /* Additional record specified by cgetset() */ +static int gottoprec = 0; /* Flag indicating retrieval of toprecord */ static int cdbget __P((DB *, char **, char *)); static int getent __P((char **, u_int *, char **, int, char *, int, char *)); @@ -619,9 +619,9 @@ return (cgetnext(buf, db_array)); } -static FILE *pfp; -static int slash; -static char **dbp; +static FILE *pfp = NULL; +static int slash = 0; /* on if last line read-in ended with a '/' */ +static char **dbp = NULL; int cgetclose() @@ -647,7 +647,7 @@ char **db_array; { size_t len; - int status, i, done; + int done, fcloseres, i, status; char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE]; u_int dummy; @@ -665,8 +665,9 @@ } else { line = fgetln(pfp, &len); if (line == NULL && pfp) { - (void)fclose(pfp); - if (ferror(pfp)) { + fcloseres = fclose(pfp); + pfp = NULL; + if (fcloseres != 0) { (void)cgetclose(); return (-1); } else { @@ -724,8 +725,9 @@ } else { /* name field extends beyond the line */ line = fgetln(pfp, &len); if (line == NULL && pfp) { - (void)fclose(pfp); - if (ferror(pfp)) { + fcloseres = fclose(pfp); + pfp = NULL; + if (fcloseres != 0) { (void)cgetclose(); return (-1); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 17:54: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from new-user.whc.net (new-user.whc.net [204.90.111.211]) by hub.freebsd.org (Postfix) with ESMTP id 6D17837B479 for ; Sun, 19 Nov 2000 17:54:03 -0800 (PST) Received: (from fwancho@localhost) by new-user.whc.net (8.10.1/8.10.1/kbp) id ; Sun, 19 Nov 2000 18:37:20 -0700 (MST) Date: Sun, 19 Nov 2000 18:37:20 -0700 (MST) From: Frank Wancho To: David Malone Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/22945: tftpd (4.1.1-RELEASE) appears broken In-Reply-To: <20001119214746.A52428@walton.maths.tcd.ie> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 19 Nov 2000, David Malone wrote: I did try to reproduce this problem on a -current machine, but had no luck. The tftp code in -current and 4.1.1 seems to be identical, so maybe we're missing something. Note, we're talking about tftpd. If the tftpd sources are identical between -current and 4.1.1, then the question turns to what changed in its loaded libraries, /usr/lib/libutil.so and /usr/lib/libc.so. That's a potential can of worms. This, of course, assumes this problem is reproduceable by others under 4.1.1-RELEASE (with the tcp-iss.patch)... --Frank To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 19:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA30337B4C5 for ; Sun, 19 Nov 2000 19:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA50702; Sun, 19 Nov 2000 19:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A9A5A37B4F9; Sun, 19 Nov 2000 19:00:10 -0800 (PST) Message-Id: <20001120030010.A9A5A37B4F9@hub.freebsd.org> Date: Sun, 19 Nov 2000 19:00:10 -0800 (PST) From: jlp@flipdog.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22967: stallion driver (stl) shipped with FBSD 4.1.1 doesn't work with new EasyIO PCI board Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22967 >Category: kern >Synopsis: stallion driver (stl) shipped with FBSD 4.1.1 doesn't work with new EasyIO PCI board >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 19 19:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jan L. Peterson >Release: 4.1.1-RELEASE >Organization: WhizBang! Labs, Inc. >Environment: FreeBSD hud.whizbang.com 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #5: Fri Nov 17 15:38:23 GMT 2000 root@hud.whizbang.com:/usr/src/sys/compile/HUD i386 >Description: Recently, we had a need to put a multiport board on a FreeBSD system. After looking through the release notes and handbook, we decided that a Stallion EasyIO board was the best choice. Unfortunately, the documentation doesn't tell you that only the EasyIO board with CD1400 chipset is supported. Stallion has not made the board with that chipset since 1998. The new boards use the SC26198 chipset, which is not supported by the existing stl driver in the kernel. In addition, the docs indicate that PCI variants of the board are supported, but only PCI variants of the ECH board are supported in the standard kernel. Checking on Stallion's ftp site [ftp.stallion.com] revealed a FreeBSD driver in the unsupported section. This driver, however, was not compatible with the version of FreeBSD that we were running. >How-To-Repeat: Install a new Stallion EasyIO PCI board in a FBSD system running 4.1.1. Build a kernel with the stl device included. Reboot. Note that the EasyIO board is not recognized. >Fix: Pick up this file: http://www.whizbanglabs.com/~jlp/stalbsd-4.1.1.tar.gz You should also probably grab this: ftp://ftp.stallion.com/drivers/unsupported/FreeBSD/stalbsd-2.0.0.tar.gz which contains drivers for FBSD 3.x. Note that my patch only fixes stallion.c, it does nothing for istallion.c (the stli driver). >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 19:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E4D3F37B4CF for ; Sun, 19 Nov 2000 19:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA53754; Sun, 19 Nov 2000 19:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8F8B437B479; Sun, 19 Nov 2000 19:38:19 -0800 (PST) Message-Id: <20001120033819.8F8B437B479@hub.freebsd.org> Date: Sun, 19 Nov 2000 19:38:19 -0800 (PST) From: mx@pisem.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/22968: fsck -p on 4.0 stop with msg NO WRITE ACCESS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22968 >Category: bin >Synopsis: fsck -p on 4.0 stop with msg NO WRITE ACCESS >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 19 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Max >Release: 4.1.1 >Organization: >Environment: FreeBSD www.domn.com 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Thu Oct 26 09:46:31 GMT 2000 max@www.domn.com:/usr/src/sys/compile/domn i386 >Description: #fsck -p /dev/ad0s1a: NO WRITE ACCESS /dev/ad0s1a: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY. I am try install new fresh system and imediatly after install and first boot run fsck -p. Result - the same. Also i am try install on another computer with different vendor of hdd, motherboard, procc and mem. Result - the same. #fsck -y ** /dev/ad0s1a (NO WRITE) ** Last Mounted on / ** Root file system ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 946 files, 28316 used, 49043 free (211 frags, 6104 blocks, 0.3% fragmentation) ** /dev/ad0s1e (NO WRITE) ** Last Mounted on /usr ** Phase 1 - Check Blocks and Sizes INCORRECT BLOCK COUNT I=269855 (2 should be 0) CORRECT? no ... ... #df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 77359 28316 42855 40% / /dev/ad0s1e 9082014 422823 7932630 5% /usr /dev/ad0s1f 286615 6092 257594 2% /var procfs 4 4 0 100% /proc >How-To-Repeat: Every time runing fsck -p. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 20:17:55 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2315037B479; Sun, 19 Nov 2000 20:17:54 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA59682; Sun, 19 Nov 2000 20:17:54 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 19 Nov 2000 20:17:54 -0800 (PST) From: Message-Id: <200011200417.UAA59682@freefall.freebsd.org> To: mx@pisem.net, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22968: fsck -p on 4.0 stop with msg NO WRITE ACCESS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fsck -p on 4.0 stop with msg NO WRITE ACCESS State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 19 20:14:37 PST 2000 State-Changed-Why: I realize that it's easy to be confused, but send-pr is really for different kinds of problems. Please resend your details to freebsd-questions@freebsd.org. http://www.freebsd.org/cgi/query-pr.cgi?pr=22968 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 19 22:50:19 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB1C537B4C5 for ; Sun, 19 Nov 2000 22:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA85289; Sun, 19 Nov 2000 22:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CC82A37B479; Sun, 19 Nov 2000 22:44:33 -0800 (PST) Message-Id: <20001120064433.CC82A37B479@hub.freebsd.org> Date: Sun, 19 Nov 2000 22:44:33 -0800 (PST) From: satz@iranger.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/22969: 4.1.1 stable kernel cannot find console Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22969 >Category: i386 >Synopsis: 4.1.1 stable kernel cannot find console >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 19 22:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Greg Satz >Release: 4.1.1 stable >Organization: >Environment: FreeBSD fnu.iranger.com 4.2-BETA FreeBSD 4.2-BETA #0: Sun Nov 19 00:53:58 MST 2000 root@fnu.iranger.com:/usr/src/sys/compile/IRANGER i386 >Description: Making a kernel from the 4.1.1 stable tree results in a non-functioning keyboard. The monitor screen works properly. If I remake the kernel from GENERIC, the keyboard functions. However my config file below doesn't allow the keyboard to function properly. Also included is a boot verbose output from the distributed GENERIC kernel and a build of the enclosed config kernel. # # FNU # machine i386 cpu I586_CPU ident FNU maxusers 10 #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O options "COMPAT_43" options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options SYSVSHM options SYSVSEM options SYSVMSG options KTRACE #kernel tracing options INET #Internet communications protocols options ICMP_BANDLIM #Rate limit bad replies options USER_LDT options KBD_INSTALL_CDEV # install a CDEV entry in /dev pseudo-device ether #Generic Ethernet pseudo-device loop #Network loopback device pseudo-device bpf #Berkeley packet filter options FFS #Fast filesystem options FFS_ROOT options SOFTUPDATES #Enable FFS soft updates support options NFS #Network File System options CD9660 #ISO 9660 filesystem options CD9660_ROOT options MSDOSFS #MS DOS File System options PROCFS #Process filesystem pseudo-device splash pseudo-device pty #Pseudo ttys - can go as high as 256 pseudo-device speaker #Play IBM BASIC-style noises out your speaker pseudo-device snp 1 #Snoop device pseudo-device gzip #Exec gzipped a.out's device isa device eisa device pci # Floppy device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # IDE controller and disks device ata0 at isa? port IO_WD1 irq 14 device ata device atadisk # ATA disk drives options ATA_STATIC_ID # Static device numbering # SCSI device ahc device scbus device da device cd device sa device pass options SCSI_DELAY=5000 # atkbdc0 controlls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at isa? irq 1 device vga0 at isa? # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 device npx0 at nexus? port IO_NPX irq 13 device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 #options COM_MULTIPORT #code for some cards with shared IRQs #device sio2 at isa? port 0x100 flags 0x0905 #device sio3 at isa? port 0x108 flags 0x0905 #device sio4 at isa? port 0x110 flags 0x0905 #device sio5 at isa? port 0x118 flags 0x0905 #device sio6 at isa? port 0x120 flags 0x0905 #device sio7 at isa? port 0x128 flags 0x0905 #device sio8 at isa? port 0x130 flags 0x0905 #device sio9 at isa? port 0x138 flags 0x0905 irq 12 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device ppi # Parallel port interface device # Ethernet device miibus # MII bus support device vr Nov 19 10:56:40 fnu /kernel.GENERIC: Copyright (c) 1992-2000 The FreeBSD Project. Nov 19 10:56:40 fnu /kernel.GENERIC: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Nov 19 10:56:40 fnu /kernel.GENERIC: The Regents of the University of California. All rights reserved. Nov 19 10:56:40 fnu /kernel.GENERIC: FreeBSD 4.1.1-RELEASE #0: Tue Sep 26 00:46:59 GMT 2000 Nov 19 10:56:40 fnu /kernel.GENERIC: jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC Nov 19 10:56:40 fnu /kernel.GENERIC: Calibrating clock(s) ... TSC clock: 166455521 Hz, i8254 clock: 1193231 Hz Nov 19 10:56:40 fnu /kernel.GENERIC: CLK_USE_I8254_CALIBRATION not specified - using default frequency Nov 19 10:56:40 fnu /kernel.GENERIC: Timecounter "i8254" frequency 1193182 Hz Nov 19 10:56:40 fnu /kernel.GENERIC: CLK_USE_TSC_CALIBRATION not specified - using old calibration method Nov 19 10:56:40 fnu /kernel.GENERIC: CPU: Pentium/P54C (166.45-MHz 586-class CPU) Nov 19 10:56:40 fnu /kernel.GENERIC: Origin = "GenuineIntel" Id = 0x52c Stepping = 12 Nov 19 10:56:40 fnu /kernel.GENERIC: Features=0x3bf Nov 19 10:56:40 fnu /kernel.GENERIC: real memory = 75497472 (73728K bytes) Nov 19 10:56:40 fnu /kernel.GENERIC: Physical memory chunk(s): Nov 19 10:56:40 fnu /kernel.GENERIC: 0x00001000 - 0x0009ffff, 651264 bytes (159 pages) Nov 19 10:56:40 fnu /kernel.GENERIC: 0x0042f000 - 0x047f7fff, 71077888 bytes (17353 pages) Nov 19 10:56:40 fnu /kernel.GENERIC: avail memory = 69226496 (67604K bytes) Nov 19 10:56:40 fnu /kernel.GENERIC: bios32: Found BIOS32 Service Directory header at 0xc00fa570 Nov 19 10:56:40 fnu /kernel.GENERIC: bios32: Entry = 0xfa8a0 (c00fa8a0) Rev = 0 Len = 1 Nov 19 10:56:40 fnu /kernel.GENERIC: pcibios: PCI BIOS entry at 0xa8d0 Nov 19 10:56:40 fnu /kernel.GENERIC: Other BIOS signatures found: Nov 19 10:56:40 fnu /kernel.GENERIC: ACPI: 00000000 Nov 19 10:56:40 fnu /kernel.GENERIC: Preloaded elf kernel "kernel.GENERIC" at 0xc0416000. Nov 19 10:56:40 fnu /kernel.GENERIC: Intel Pentium detected, installing workaround for F00F bug Nov 19 10:56:40 fnu /kernel.GENERIC: md0: Malloc disk Nov 19 10:56:40 fnu /kernel.GENERIC: Creating DISK md0 Nov 19 10:56:40 fnu /kernel.GENERIC: Math emulator present Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(1a): mode1res=0x00000000 (0x80000000) Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(1b): mode1res=0x80000000 (0xff000001) Nov 19 10:56:40 fnu /kernel.GENERIC: pci_cfgcheck: device 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -- nothing found Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(2): mode 2 enable port (0x0cf8) is 0x00 Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(2a): mode2res=0x0e (0x0e) Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(2a): now trying mechanism 2 Nov 19 10:56:40 fnu /kernel.GENERIC: pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=04a38086) Nov 19 10:56:40 fnu /kernel.GENERIC: npx0: on motherboard Nov 19 10:56:40 fnu /kernel.GENERIC: npx0: INT 16 interface Nov 19 10:56:40 fnu /kernel.GENERIC: i586_bzero() bandwidth = 291205591 bytes/sec Nov 19 10:56:40 fnu /kernel.GENERIC: bzero() bandwidth = 146391450 bytes/sec Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(1a): mode1res=0x00000000 (0x80000000) Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(1b): mode1res=0x80000000 (0xff000001) Nov 19 10:56:40 fnu /kernel.GENERIC: pci_cfgcheck: device 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -- nothing found Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(2): mode 2 enable port (0x0cf8) is 0x00 Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(2a): mode2res=0x0e (0x0e) Nov 19 10:56:40 fnu /kernel.GENERIC: pci_open(2a): now trying mechanism 2 Nov 19 10:56:40 fnu /kernel.GENERIC: pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=04a38086) Nov 19 10:56:40 fnu /kernel.GENERIC: pcib0: on motherboard Nov 19 10:56:40 fnu /kernel.GENERIC: found-> vendor=0x8086, dev=0x04a3, revid=0x11 Nov 19 10:56:40 fnu /kernel.GENERIC: class=06-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:56:40 fnu /kernel.GENERIC: subordinatebus=0 secondarybus=0 Nov 19 10:56:41 fnu /kernel.GENERIC: found-> vendor=0x8086, dev=0x0482, revid=0x05 Nov 19 10:56:41 fnu /kernel.GENERIC: class=00-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:56:41 fnu /kernel.GENERIC: subordinatebus=0 secondarybus=0 Nov 19 10:56:41 fnu /kernel.GENERIC: found-> vendor=0x10ee, dev=0x3fc1, revid=0x00 Nov 19 10:56:41 fnu /kernel.GENERIC: class=04-01-00, hdrtype=0x00, mfdev=0 Nov 19 10:56:41 fnu /kernel.GENERIC: subordinatebus=0 secondarybus=0 Nov 19 10:56:41 fnu /kernel.GENERIC: intpin=a, irq=5 Nov 19 10:56:41 fnu /kernel.GENERIC: map[10]: type 1, range 32, base f4000000, size 24 Nov 19 10:56:41 fnu /kernel.GENERIC: found-> vendor=0x1106, dev=0x3043, revid=0x06 Nov 19 10:56:41 fnu /kernel.GENERIC: class=02-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:56:41 fnu /kernel.GENERIC: subordinatebus=0 secondarybus=0 Nov 19 10:56:41 fnu /kernel.GENERIC: intpin=a, irq=9 Nov 19 10:56:41 fnu /kernel.GENERIC: map[10]: type 1, range 32, base 00006000, size 7 Nov 19 10:56:41 fnu /kernel.GENERIC: map[14]: type 1, range 32, base f5000000, size 7 Nov 19 10:56:41 fnu /kernel.GENERIC: found-> vendor=0x5333, dev=0x5631, revid=0x06 Nov 19 10:56:41 fnu /kernel.GENERIC: class=03-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:56:41 fnu /kernel.GENERIC: subordinatebus=0 secondarybus=0 Nov 19 10:56:41 fnu /kernel.GENERIC: intpin=a, irq=10 Nov 19 10:56:41 fnu /kernel.GENERIC: map[10]: type 1, range 32, base f0000000, size 26 Nov 19 10:56:41 fnu /kernel.GENERIC: pci0: on pcib0 Nov 19 10:56:41 fnu /kernel.GENERIC: CPU: Pentium, 100MHz, CPU->Memory posting ON Nov 19 10:56:41 fnu /kernel.GENERIC: Warning: Cache parity disabled! Nov 19 10:56:41 fnu /kernel.GENERIC: Warning: DRAM parity mask! Nov 19 10:56:41 fnu /kernel.GENERIC: Cache: 512KB writeback, cache clocks=3-2-2-2/4-2-2-2 Nov 19 10:56:41 fnu /kernel.GENERIC: Cache flags: byte-control Nov 19 10:56:41 fnu /kernel.GENERIC: DRAM: page mode memory clocks=X-4-4-4 (70ns) Nov 19 10:56:41 fnu /kernel.GENERIC: CPU->PCI: posting ON, burst mode OFF, PCI clocks=2-1-1-1 Nov 19 10:56:41 fnu /kernel.GENERIC: PCI->Memory: posting OFF Nov 19 10:56:41 fnu /kernel.GENERIC: Refresh: RAS#Only Nov 19 10:56:41 fnu /kernel.GENERIC: isab0: at device 2.0 on pci0 Nov 19 10:56:41 fnu /kernel.GENERIC: eisa0: on isab0 Nov 19 10:56:41 fnu /kernel.GENERIC: mainboard0: on eisa0 slot 0 Nov 19 10:56:41 fnu /kernel.GENERIC: ahc0: at 0x4c00-0x4cff, irq 11 (level) Nov 19 10:56:41 fnu /kernel.GENERIC: ahc0: on eisa0 slot 4 Nov 19 10:56:41 fnu /kernel.GENERIC: ahc0: Downloading Sequencer Program... 417 instructions downloaded Nov 19 10:56:41 fnu /kernel.GENERIC: aic7770: Twin Channel, A SCSI Id=7, B SCSI Id=7, primary A, 4/255 SCBs Nov 19 10:56:41 fnu /kernel.GENERIC: isa0: on isab0 Nov 19 10:56:41 fnu /kernel.GENERIC: pci0: (vendor=0x10ee, dev=0x3fc1) at 13.0 irq 5 Nov 19 10:56:41 fnu /kernel.GENERIC: vr0: port 0x6000-0x607f mem 0xf5000000-0xf500007f irq 9 at device 14.0 on pci0 Nov 19 10:56:41 fnu /kernel.GENERIC: vr0: Ethernet address: 00:80:c8:e1:1d:85 Nov 19 10:56:41 fnu /kernel.GENERIC: miibus0: on vr0 Nov 19 10:56:41 fnu /kernel.GENERIC: amphy0: on miibus0 Nov 19 10:56:41 fnu /kernel.GENERIC: amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 19 10:56:41 fnu /kernel.GENERIC: bpf: vr0 attached Nov 19 10:56:41 fnu /kernel.GENERIC: pci0: (vendor=0x5333, dev=0x5631) at 15.0 irq 10 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 203 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 243 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 283 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 2c3 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 303 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 343 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 383 Nov 19 10:56:41 fnu /kernel.GENERIC: Trying Read_Port at 3c3 Nov 19 10:56:41 fnu /kernel.GENERIC: isa_probe_children: disabling PnP devices Nov 19 10:56:41 fnu /kernel.GENERIC: isa_probe_children: probing non-PnP devices Nov 19 10:56:41 fnu /kernel.GENERIC: fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 Nov 19 10:56:41 fnu /kernel.GENERIC: fd0: <1440-KB 3.5" drive> on fdc0 drive 0 Nov 19 10:56:41 fnu /kernel.GENERIC: ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x0000 Nov 19 10:56:41 fnu /kernel.GENERIC: ata0: mask=00 status0=ff status1=ff Nov 19 10:56:41 fnu /kernel.GENERIC: ata0: probe allocation failed Nov 19 10:56:42 fnu /kernel.GENERIC: ata0 failed to probe at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0x0000 Nov 19 10:56:42 fnu /kernel.GENERIC: ata1: mask=00 status0=ff status1=ff Nov 19 10:56:42 fnu /kernel.GENERIC: ata1: probe allocation failed Nov 19 10:56:42 fnu /kernel.GENERIC: ata1 failed to probe at port 0x170-0x177,0x376 irq 15 on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: adv0 failed to probe at port 0x330 on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: bt0: Failed Status Reg Test - ff Nov 19 10:56:42 fnu /kernel.GENERIC: bt_isa_probe: Probe failed at 0x330 Nov 19 10:56:42 fnu /kernel.GENERIC: bt0: Failed Status Reg Test - ff Nov 19 10:56:42 fnu /kernel.GENERIC: bt_isa_probe: Probe failed at 0x334 Nov 19 10:56:42 fnu /kernel.GENERIC: bt0: Failed Status Reg Test - ff Nov 19 10:56:42 fnu /kernel.GENERIC: bt_isa_probe: Probe failed at 0x230 Nov 19 10:56:42 fnu /kernel.GENERIC: bt0: Failed Status Reg Test - ff Nov 19 10:56:42 fnu /kernel.GENERIC: bt_isa_probe: Probe failed at 0x234 Nov 19 10:56:42 fnu /kernel.GENERIC: bt0: Failed Status Reg Test - df Nov 19 10:56:42 fnu /kernel.GENERIC: bt_isa_probe: Probe failed at 0x130 Nov 19 10:56:42 fnu /kernel.GENERIC: bt0: Failed Status Reg Test - 0 Nov 19 10:56:42 fnu /kernel.GENERIC: bt_isa_probe: Probe failed at 0x134 Nov 19 10:56:42 fnu /kernel.GENERIC: bt0 failed to probe at port 0x134-0x137 on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: aha0: status reg test failed ff Nov 19 10:56:42 fnu last message repeated 3 times Nov 19 10:56:42 fnu /kernel.GENERIC: aha0: status reg test failed df Nov 19 10:56:42 fnu /kernel.GENERIC: aha0: status reg test failed 0 Nov 19 10:56:42 fnu /kernel.GENERIC: aha0 failed to probe at port 0x134-0x137 on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: aic0 failed to probe at port 0x140-0x15f on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: atkbdc0: at port 0x60,0x64 on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: atkbd0: flags 0x1 irq 1 on atkbdc0 Nov 19 10:56:42 fnu /kernel.GENERIC: atkbd: the current kbd controller command byte 0065 Nov 19 10:56:42 fnu /kernel.GENERIC: atkbd: keyboard ID 0x41ab (2) Nov 19 10:56:42 fnu /kernel.GENERIC: kbdc: RESET_KBD return code:00fa Nov 19 10:56:42 fnu /kernel.GENERIC: kbdc: RESET_KBD status:00aa Nov 19 10:56:42 fnu /kernel.GENERIC: kbd0 at atkbd0 Nov 19 10:56:42 fnu /kernel.GENERIC: kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 Nov 19 10:56:42 fnu /kernel.GENERIC: psm0: current command byte:0065 Nov 19 10:56:42 fnu /kernel.GENERIC: kbdc: TEST_AUX_PORT status:0000 Nov 19 10:56:42 fnu /kernel.GENERIC: kbdc: RESET_AUX return code:00fe Nov 19 10:56:42 fnu last message repeated 2 times Nov 19 10:56:42 fnu /kernel.GENERIC: kbdc: DIAGNOSE status:0055 Nov 19 10:56:42 fnu /kernel.GENERIC: kbdc: TEST_KBD_PORT status:0000 Nov 19 10:56:42 fnu /kernel.GENERIC: psm0: failed to reset the aux device. Nov 19 10:56:42 fnu /kernel.GENERIC: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: fb0: vga0, vga, type:VGA (5), flags:0x7007f Nov 19 10:56:42 fnu /kernel.GENERIC: fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 Nov 19 10:56:42 fnu /kernel.GENERIC: fb0: init mode:24, bios mode:3, current mode:24 Nov 19 10:56:42 fnu /kernel.GENERIC: fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k Nov 19 10:56:42 fnu /kernel.GENERIC: VGA parameters upon power-up Nov 19 10:56:42 fnu /kernel.GENERIC: 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 Nov 19 10:56:42 fnu /kernel.GENERIC: bf 1f 00 4f 0e 0f 00 00 07 80 9c 8e 8f 28 1f 96 Nov 19 10:56:42 fnu /kernel.GENERIC: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Nov 19 10:56:42 fnu /kernel.GENERIC: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Nov 19 10:56:42 fnu /kernel.GENERIC: VGA parameters in BIOS for mode 24 Nov 19 10:56:42 fnu /kernel.GENERIC: 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 Nov 19 10:56:42 fnu /kernel.GENERIC: bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 Nov 19 10:56:42 fnu /kernel.GENERIC: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Nov 19 10:56:42 fnu /kernel.GENERIC: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Nov 19 10:56:42 fnu /kernel.GENERIC: EGA/VGA parameters to be used for mode 24 Nov 19 10:56:42 fnu /kernel.GENERIC: 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 Nov 19 10:56:42 fnu /kernel.GENERIC: bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 Nov 19 10:56:42 fnu /kernel.GENERIC: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Nov 19 10:56:42 fnu /kernel.GENERIC: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Nov 19 10:56:42 fnu /kernel.GENERIC: sc0: at flags 0x100 on isa0 Nov 19 10:56:42 fnu /kernel.GENERIC: sc0: VGA <16 virtual consoles, flags=0x300> Nov 19 10:56:43 fnu /kernel.GENERIC: sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) Nov 19 10:56:43 fnu /kernel.GENERIC: pcic0 failed to probe at port 0x3e0 iomem 0xd0000 irq 10 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: pcic1: not probed (disabled) Nov 19 10:56:43 fnu /kernel.GENERIC: sio0: irq maps: 0x41 0x51 0x41 0x41 Nov 19 10:56:43 fnu /kernel.GENERIC: sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: sio0: type 16450 Nov 19 10:56:43 fnu /kernel.GENERIC: sio1: irq maps: 0x41 0x49 0x41 0x41 Nov 19 10:56:43 fnu /kernel.GENERIC: sio1 at port 0x2f8-0x2ff irq 3 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: sio1: type 16450 Nov 19 10:56:43 fnu /kernel.GENERIC: sio2: not probed (disabled) Nov 19 10:56:43 fnu /kernel.GENERIC: sio3: not probed (disabled) Nov 19 10:56:43 fnu /kernel.GENERIC: ppc0: parallel port found at 0x378 Nov 19 10:56:43 fnu /kernel.GENERIC: ppc0: using extended I/O port range Nov 19 10:56:43 fnu /kernel.GENERIC: ppc0: SPP Nov 19 10:56:43 fnu /kernel.GENERIC: ppc0: at port 0x378-0x37f irq 7 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode Nov 19 10:56:43 fnu /kernel.GENERIC: plip0: on ppbus0 Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: lp0 attached Nov 19 10:56:43 fnu /kernel.GENERIC: lpt0: on ppbus0 Nov 19 10:56:43 fnu /kernel.GENERIC: lpt0: Interrupt-driven port Nov 19 10:56:43 fnu /kernel.GENERIC: ppi0: on ppbus0 Nov 19 10:56:43 fnu /kernel.GENERIC: ed0 failed to probe at port 0x280-0x29f iomem 0xd8000 irq 10 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: fe0 failed to probe at port 0x300-0x31f on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: ie0 failed to probe at port 0x300 iomem 0xd0000 irq 10 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: le0 failed to probe at port 0x300 iomem 0xd0000 irq 5 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: lnc0 failed to probe at port 0x280 irq 10 drq 0 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: cs0 failed to probe at port 0x300 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: sn0 failed to probe at port 0x300 irq 10 on isa0 Nov 19 10:56:43 fnu /kernel.GENERIC: isa_probe_children: probing PnP devices Nov 19 10:56:43 fnu /kernel.GENERIC: BIOS Geometries: Nov 19 10:56:43 fnu /kernel.GENERIC: 0:03fefe3f 0..1022=1023 cylinders, 0..254=255 heads, 1..63=63 sectors Nov 19 10:56:43 fnu /kernel.GENERIC: 0 accounted for Nov 19 10:56:43 fnu /kernel.GENERIC: Device configuration finished. Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: ppp0 attached Nov 19 10:56:43 fnu /kernel.GENERIC: new masks: bio 680040, tty 63009a, net 67029a Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: sl0 attached Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: faith0 attached Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: gif0 attached Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: gif1 attached Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: gif2 attached Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: gif3 attached Nov 19 10:56:43 fnu /kernel.GENERIC: bpf: lo0 attached Nov 19 10:56:43 fnu /kernel.GENERIC: Waiting 15 seconds for SCSI devices to settle Nov 19 10:56:43 fnu /kernel.GENERIC: (noperiph:ahc0:0:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. Nov 19 10:56:43 fnu /kernel.GENERIC: (noperiph:ahc0:1:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. Nov 19 10:56:43 fnu /kernel.GENERIC: ahc0: target 1 synchronous at 10.0MHz, offset = 0xf Nov 19 10:56:43 fnu /kernel.GENERIC: Sending SDTR! Nov 19 10:56:43 fnu /kernel.GENERIC: (probe9:ahc0:1:2:0): INQUIRY. CDB: 12 1 80 0 ff 0 Nov 19 10:56:43 fnu /kernel.GENERIC: (probe9:ahc0:1:2:0): ILLEGAL REQUEST asc:24,0 Nov 19 10:56:43 fnu /kernel.GENERIC: (probe9:ahc0:1:2:0): Invalid field in CDB Nov 19 10:56:43 fnu /kernel.GENERIC: (probe3:ahc0:0:3:0): INQUIRY. CDB: 12 1 80 0 ff 0 Nov 19 10:56:43 fnu /kernel.GENERIC: (probe3:ahc0:0:3:0): ILLEGAL REQUEST asc:24,0 Nov 19 10:56:43 fnu /kernel.GENERIC: (probe3:ahc0:0:3:0): Invalid field in CDB sks:cf,2 Nov 19 10:56:43 fnu /kernel.GENERIC: ahc0: target 3 synchronous at 10.0MHz, offset = 0xf Nov 19 10:56:43 fnu /kernel.GENERIC: Creating DISK da0 Nov 19 10:56:43 fnu /kernel.GENERIC: sa0 at ahc0 bus 0 target 3 lun 0 Nov 19 10:56:43 fnu /kernel.GENERIC: sa0: Removable Sequential Access SCSI-2 device Nov 19 10:56:43 fnu /kernel.GENERIC: sa0: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:56:43 fnu /kernel.GENERIC: Creating DISK cd0 Nov 19 10:56:43 fnu /kernel.GENERIC: pass0 at ahc0 bus 0 target 3 lun 0 Nov 19 10:56:44 fnu /kernel.GENERIC: pass0: Removable Sequential Access SCSI-2 device Nov 19 10:56:44 fnu /kernel.GENERIC: pass0: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:56:44 fnu /kernel.GENERIC: pass1 at ahc0 bus 1 target 1 lun 0 Nov 19 10:56:44 fnu /kernel.GENERIC: pass1: Fixed Direct Access SCSI-2 device Nov 19 10:56:44 fnu /kernel.GENERIC: pass1: Serial Number WS7020328292 Nov 19 10:56:44 fnu /kernel.GENERIC: pass1: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:56:44 fnu /kernel.GENERIC: pass2 at ahc0 bus 1 target 2 lun 0 Nov 19 10:56:44 fnu /kernel.GENERIC: pass2: Removable CD-ROM SCSI-2 device Nov 19 10:56:44 fnu /kernel.GENERIC: pass2: 3.300MB/s transfers Nov 19 10:56:44 fnu /kernel.GENERIC: Mounting root from ufs:/dev/da0s2a Nov 19 10:56:44 fnu /kernel.GENERIC: (cd0:ahc0:1:2:0): READ CD RECORDED CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 Nov 19 10:56:44 fnu /kernel.GENERIC: (cd0:ahc0:1:2:0): NOT READY asc:3a,0 Nov 19 10:56:44 fnu /kernel.GENERIC: (cd0:ahc0:1:2:0): Medium not present Nov 19 10:56:44 fnu /kernel.GENERIC: cd0 at ahc0 bus 1 target 2 lun 0 Nov 19 10:56:44 fnu /kernel.GENERIC: cd0: Removable CD-ROM SCSI-2 device Nov 19 10:56:44 fnu /kernel.GENERIC: cd0: 3.300MB/s transfers Nov 19 10:56:44 fnu /kernel.GENERIC: cd0: Attempt to query device size failed: NOT READY, Medium not present Nov 19 10:56:44 fnu /kernel.GENERIC: da0 at ahc0 bus 1 target 1 lun 0 Nov 19 10:56:44 fnu /kernel.GENERIC: da0: Fixed Direct Access SCSI-2 device Nov 19 10:56:44 fnu /kernel.GENERIC: da0: Serial Number WS7020328292 Nov 19 10:56:44 fnu /kernel.GENERIC: da0: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:56:44 fnu /kernel.GENERIC: da0: 8683MB (17783204 512 byte sectors: 255H 63S/T 1106C) Nov 19 10:56:44 fnu /kernel.GENERIC: da0s1: type 0x6, start 63, end = 80324, size 80262 : OK Nov 19 10:56:44 fnu /kernel.GENERIC: da0s2: type 0xa5, start 80325, end = 17767889, size 17687565 : OK Nov 19 10:56:44 fnu /kernel.GENERIC: start_init: trying /sbin/init Nov 19 10:56:44 fnu ntpd[86]: ntpd 4.0.99b Sat Nov 11 04:57:21 MST 2000 (1) Nov 19 10:56:44 fnu ntpd[86]: using kernel phase-lock loop 2040 Nov 19 10:56:44 fnu ntpd[86]: using kernel phase-lock loop 2041 Nov 19 10:56:47 fnu /kernel.GENERIC: Linux-ELF exec handler installed Nov 19 10:56:58 fnu login: ROOT LOGIN (root) ON ttyv0 Nov 19 10:57:05 fnu reboot: rebooted by root Nov 19 10:57:05 fnu syslogd: exiting on signal 15 Nov 19 10:58:22 fnu /kernel: Copyright (c) 1992-2000 The FreeBSD Project. Nov 19 10:58:22 fnu /kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Nov 19 10:58:22 fnu /kernel: The Regents of the University of California. All rights reserved. Nov 19 10:58:22 fnu /kernel: FreeBSD 4.2-BETA #0: Sun Nov 19 00:53:58 MST 2000 Nov 19 10:58:22 fnu /kernel: root@fnu.iranger.com:/usr/src/sys/compile/IRANGER Nov 19 10:58:22 fnu /kernel: Calibrating clock(s) ... TSC clock: 166455269 Hz, i8254 clock: 1193228 Hz Nov 19 10:58:22 fnu /kernel: CLK_USE_I8254_CALIBRATION not specified - using default frequency Nov 19 10:58:22 fnu /kernel: Timecounter "i8254" frequency 1193182 Hz Nov 19 10:58:22 fnu /kernel: CLK_USE_TSC_CALIBRATION not specified - using old calibration method Nov 19 10:58:22 fnu /kernel: Timecounter "TSC" frequency 166449765 Hz Nov 19 10:58:22 fnu /kernel: CPU: Pentium/P54C (166.45-MHz 586-class CPU) Nov 19 10:58:22 fnu /kernel: Origin = "GenuineIntel" Id = 0x52c Stepping = 12 Nov 19 10:58:22 fnu /kernel: Features=0x3bf Nov 19 10:58:22 fnu /kernel: real memory = 75497472 (73728K bytes) Nov 19 10:58:22 fnu /kernel: Physical memory chunk(s): Nov 19 10:58:22 fnu /kernel: 0x00001000 - 0x0009ffff, 651264 bytes (159 pages) Nov 19 10:58:22 fnu /kernel: 0x00306000 - 0x047f7fff, 72294400 bytes (17650 pages) Nov 19 10:58:22 fnu /kernel: avail memory = 70483968 (68832K bytes) Nov 19 10:58:22 fnu /kernel: bios32: Found BIOS32 Service Directory header at 0xc00fa570 Nov 19 10:58:22 fnu /kernel: bios32: Entry = 0xfa8a0 (c00fa8a0) Rev = 0 Len = 1 Nov 19 10:58:22 fnu /kernel: pcibios: PCI BIOS entry at 0xa8d0 Nov 19 10:58:22 fnu /kernel: Other BIOS signatures found: Nov 19 10:58:22 fnu /kernel: ACPI: 00000000 Nov 19 10:58:22 fnu /kernel: Preloaded elf kernel "kernel" at 0xc02ed000. Nov 19 10:58:22 fnu /kernel: Intel Pentium detected, installing workaround for F00F bug Nov 19 10:58:22 fnu /kernel: pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 Nov 19 10:58:22 fnu /kernel: pci_open(1a): mode1res=0x00000000 (0x80000000) Nov 19 10:58:22 fnu /kernel: pci_open(1b): mode1res=0x80000000 (0xff000001) Nov 19 10:58:22 fnu /kernel: pci_cfgcheck: device 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -- nothing found Nov 19 10:58:22 fnu /kernel: pci_open(2): mode 2 enable port (0x0cf8) is 0x00 Nov 19 10:58:22 fnu /kernel: pci_open(2a): mode2res=0x0e (0x0e) Nov 19 10:58:22 fnu /kernel: pci_open(2a): now trying mechanism 2 Nov 19 10:58:22 fnu /kernel: pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=04a38086) Nov 19 10:58:22 fnu /kernel: npx0: on motherboard Nov 19 10:58:22 fnu /kernel: npx0: INT 16 interface Nov 19 10:58:22 fnu /kernel: i586_bzero() bandwidth = 74482347 bytes/sec Nov 19 10:58:22 fnu /kernel: bzero() bandwidth = 37275878 bytes/sec Nov 19 10:58:22 fnu /kernel: pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 Nov 19 10:58:22 fnu /kernel: pci_open(1a): mode1res=0x00000000 (0x80000000) Nov 19 10:58:22 fnu /kernel: pci_open(1b): mode1res=0x80000000 (0xff000001) Nov 19 10:58:22 fnu /kernel: pci_cfgcheck: device 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -- nothing found Nov 19 10:58:22 fnu /kernel: pci_open(2): mode 2 enable port (0x0cf8) is 0x00 Nov 19 10:58:22 fnu /kernel: pci_open(2a): mode2res=0x0e (0x0e) Nov 19 10:58:22 fnu /kernel: pci_open(2a): now trying mechanism 2 Nov 19 10:58:22 fnu /kernel: pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=04a38086) Nov 19 10:58:22 fnu /kernel: pcib0: on motherboard Nov 19 10:58:22 fnu /kernel: found-> vendor=0x8086, dev=0x04a3, revid=0x11 Nov 19 10:58:22 fnu /kernel: class=06-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:58:22 fnu /kernel: subordinatebus=0 secondarybus=0 Nov 19 10:58:22 fnu /kernel: found-> vendor=0x8086, dev=0x0482, revid=0x05 Nov 19 10:58:22 fnu /kernel: class=00-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:58:22 fnu /kernel: subordinatebus=0 secondarybus=0 Nov 19 10:58:22 fnu /kernel: found-> vendor=0x10ee, dev=0x3fc1, revid=0x00 Nov 19 10:58:22 fnu /kernel: class=04-01-00, hdrtype=0x00, mfdev=0 Nov 19 10:58:23 fnu /kernel: subordinatebus=0 secondarybus=0 Nov 19 10:58:23 fnu /kernel: intpin=a, irq=5 Nov 19 10:58:23 fnu /kernel: map[10]: type 1, range 32, base f4000000, size 24 Nov 19 10:58:23 fnu /kernel: found-> vendor=0x1106, dev=0x3043, revid=0x06 Nov 19 10:58:23 fnu /kernel: class=02-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:58:23 fnu /kernel: subordinatebus=0 secondarybus=0 Nov 19 10:58:23 fnu /kernel: intpin=a, irq=9 Nov 19 10:58:23 fnu /kernel: map[10]: type 1, range 32, base 00006000, size 7 Nov 19 10:58:23 fnu /kernel: map[14]: type 1, range 32, base f5000000, size 7 Nov 19 10:58:23 fnu /kernel: found-> vendor=0x5333, dev=0x5631, revid=0x06 Nov 19 10:58:23 fnu /kernel: class=03-00-00, hdrtype=0x00, mfdev=0 Nov 19 10:58:23 fnu /kernel: subordinatebus=0 secondarybus=0 Nov 19 10:58:23 fnu /kernel: intpin=a, irq=10 Nov 19 10:58:23 fnu /kernel: map[10]: type 1, range 32, base f0000000, size 26 Nov 19 10:58:23 fnu /kernel: pci0: on pcib0 Nov 19 10:58:23 fnu /kernel: CPU: Pentium, 100MHz, CPU->Memory posting ON Nov 19 10:58:23 fnu /kernel: Warning: Cache parity disabled! Nov 19 10:58:23 fnu /kernel: Warning: DRAM parity mask! Nov 19 10:58:23 fnu /kernel: Cache: 512KB writeback, cache clocks=3-2-2-2/4-2-2-2 Nov 19 10:58:23 fnu /kernel: Cache flags: byte-control Nov 19 10:58:23 fnu /kernel: DRAM: page mode memory clocks=X-4-4-4 (70ns) Nov 19 10:58:23 fnu /kernel: CPU->PCI: posting ON, burst mode OFF, PCI clocks=2-1-1-1 Nov 19 10:58:23 fnu /kernel: PCI->Memory: posting OFF Nov 19 10:58:23 fnu /kernel: Refresh: RAS#Only Nov 19 10:58:23 fnu /kernel: isab0: at device 2.0 on pci0 Nov 19 10:58:23 fnu /kernel: eisa0: on isab0 Nov 19 10:58:23 fnu /kernel: mainboard0: on eisa0 slot 0 Nov 19 10:58:23 fnu /kernel: ahc0: at 0x4c00-0x4cff, irq 11 (level) Nov 19 10:58:23 fnu /kernel: ahc0: on eisa0 slot 4 Nov 19 10:58:23 fnu /kernel: ahc0: Downloading Sequencer Program... 405 instructions downloaded Nov 19 10:58:23 fnu /kernel: aic7770: Twin Channel, A SCSI Id=7, B SCSI Id=7, primary A, 4/255 SCBs Nov 19 10:58:23 fnu /kernel: isa0: on isab0 Nov 19 10:58:23 fnu /kernel: pci0: (vendor=0x10ee, dev=0x3fc1) at 13.0 irq 5 Nov 19 10:58:23 fnu /kernel: vr0: port 0x6000-0x607f mem 0xf5000000-0xf500007f irq 9 at device 14.0 on pci0 Nov 19 10:58:23 fnu /kernel: vr0: Ethernet address: 00:80:c8:e1:1d:85 Nov 19 10:58:23 fnu /kernel: miibus0: on vr0 Nov 19 10:58:23 fnu /kernel: amphy0: on miibus0 Nov 19 10:58:23 fnu /kernel: amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 19 10:58:23 fnu /kernel: bpf: vr0 attached Nov 19 10:58:23 fnu /kernel: pci0: (vendor=0x5333, dev=0x5631) at 15.0 irq 10 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 203 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 243 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 283 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 2c3 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 303 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 343 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 383 Nov 19 10:58:23 fnu /kernel: Trying Read_Port at 3c3 Nov 19 10:58:23 fnu /kernel: isa_probe_children: disabling PnP devices Nov 19 10:58:23 fnu /kernel: isa_probe_children: probing non-PnP devices Nov 19 10:58:23 fnu /kernel: fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 Nov 19 10:58:23 fnu /kernel: fd0: <1440-KB 3.5" drive> on fdc0 drive 0 Nov 19 10:58:23 fnu /kernel: ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x0000 Nov 19 10:58:23 fnu /kernel: ata0: mask=00 status0=ff status1=ff Nov 19 10:58:23 fnu /kernel: ata0: probe allocation failed Nov 19 10:58:23 fnu /kernel: ata0 failed to probe at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 Nov 19 10:58:23 fnu /kernel: atkbdc0: at port 0x60,0x64 on isa0 Nov 19 10:58:24 fnu /kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Nov 19 10:58:24 fnu /kernel: fb0: vga0, vga, type:VGA (5), flags:0x7007f Nov 19 10:58:24 fnu /kernel: fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 Nov 19 10:58:24 fnu /kernel: fb0: init mode:24, bios mode:3, current mode:24 Nov 19 10:58:24 fnu /kernel: fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k Nov 19 10:58:24 fnu /kernel: VGA parameters upon power-up Nov 19 10:58:24 fnu /kernel: 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 Nov 19 10:58:24 fnu /kernel: bf 1f 00 4f 0e 0f 00 00 07 80 9c 8e 8f 28 1f 96 Nov 19 10:58:24 fnu /kernel: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Nov 19 10:58:24 fnu /kernel: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Nov 19 10:58:24 fnu /kernel: VGA parameters in BIOS for mode 24 Nov 19 10:58:24 fnu /kernel: 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 Nov 19 10:58:24 fnu /kernel: bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 Nov 19 10:58:24 fnu /kernel: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Nov 19 10:58:24 fnu /kernel: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Nov 19 10:58:24 fnu /kernel: EGA/VGA parameters to be used for mode 24 Nov 19 10:58:24 fnu /kernel: 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 Nov 19 10:58:24 fnu /kernel: bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 Nov 19 10:58:24 fnu /kernel: b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c Nov 19 10:58:24 fnu /kernel: 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff Nov 19 10:58:24 fnu /kernel: atkbd: the current kbd controller command byte 0065 Nov 19 10:58:24 fnu /kernel: atkbd: keyboard ID 0x41ab (2) Nov 19 10:58:24 fnu /kernel: kbdc: RESET_KBD return code:00fa Nov 19 10:58:24 fnu /kernel: kbdc: RESET_KBD status:00aa Nov 19 10:58:24 fnu /kernel: sc0: at flags 0x100 on isa0 Nov 19 10:58:24 fnu /kernel: sc0: VGA <16 virtual consoles, flags=0x300> Nov 19 10:58:24 fnu /kernel: sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) Nov 19 10:58:24 fnu /kernel: sio0: irq maps: 0x41 0x51 0x41 0x41 Nov 19 10:58:24 fnu /kernel: sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 Nov 19 10:58:24 fnu /kernel: sio0: type 16450 Nov 19 10:58:24 fnu /kernel: sio1: irq maps: 0x41 0x49 0x41 0x41 Nov 19 10:58:24 fnu /kernel: sio1 at port 0x2f8-0x2ff irq 3 on isa0 Nov 19 10:58:24 fnu /kernel: sio1: type 16450 Nov 19 10:58:24 fnu /kernel: ppc0: parallel port found at 0x378 Nov 19 10:58:24 fnu /kernel: ppc0: using extended I/O port range Nov 19 10:58:24 fnu /kernel: ppc0: SPP Nov 19 10:58:24 fnu /kernel: ppc0: at port 0x378-0x37f irq 7 on isa0 Nov 19 10:58:24 fnu /kernel: ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode Nov 19 10:58:24 fnu /kernel: lpt0: on ppbus0 Nov 19 10:58:24 fnu /kernel: lpt0: Interrupt-driven port Nov 19 10:58:24 fnu /kernel: ppi0: on ppbus0 Nov 19 10:58:24 fnu /kernel: isa_probe_children: probing PnP devices Nov 19 10:58:24 fnu /kernel: BIOS Geometries: Nov 19 10:58:24 fnu /kernel: 0:03fefe3f 0..1022=1023 cylinders, 0..254=255 heads, 1..63=63 sectors Nov 19 10:58:24 fnu /kernel: 0 accounted for Nov 19 10:58:24 fnu /kernel: Device configuration finished. Nov 19 10:58:25 fnu /kernel: bpf: lo0 attached Nov 19 10:58:25 fnu /kernel: Waiting 5 seconds for SCSI devices to settle Nov 19 10:58:25 fnu /kernel: (noperiph:ahc0:0:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. Nov 19 10:58:25 fnu /kernel: (noperiph:ahc0:1:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. Nov 19 10:58:25 fnu /kernel: (ahc0:B:1:0): Received SDTR period c, offset f Nov 19 10:58:25 fnu /kernel: Filtered to period 0, offset 0 Nov 19 10:58:25 fnu /kernel: (ahc0:B:1:0): Target Initiated SDTR Nov 19 10:58:25 fnu /kernel: (ahc0:B:1:0): Sending SDTR period 0, offset 0 Nov 19 10:58:25 fnu /kernel: (probe9:ahc0:1:2:0): INQUIRY. CDB: 12 1 80 0 ff 0 Nov 19 10:58:25 fnu /kernel: (probe9:ahc0:1:2:0): ILLEGAL REQUEST asc:24,0 Nov 19 10:58:25 fnu /kernel: (probe9:ahc0:1:2:0): Invalid field in CDB Nov 19 10:58:25 fnu /kernel: (probe3:ahc0:0:3:0): INQUIRY. CDB: 12 1 80 0 ff 0 Nov 19 10:58:25 fnu /kernel: (probe3:ahc0:0:3:0): ILLEGAL REQUEST asc:24,0 Nov 19 10:58:25 fnu /kernel: (probe3:ahc0:0:3:0): Invalid field in CDB sks:cf,2 Nov 19 10:58:25 fnu /kernel: (ahc0:A:3:0): Sending SDTR period 19, offset f Nov 19 10:58:25 fnu /kernel: (ahc0:A:3:0): Received SDTR period 19, offset f Nov 19 10:58:25 fnu /kernel: Filtered to period 19, offset f Nov 19 10:58:25 fnu /kernel: ahc0: target 3 synchronous at 10.0MHz, offset = 0xf Nov 19 10:58:25 fnu /kernel: (ahc0:A:3:0): Sending SDTR period 19, offset f Nov 19 10:58:25 fnu /kernel: (ahc0:A:3:0): Received SDTR period 19, offset f Nov 19 10:58:25 fnu /kernel: Filtered to period 19, offset f Nov 19 10:58:25 fnu /kernel: (ahc0:B:1:0): Sending SDTR period 19, offset f Nov 19 10:58:25 fnu /kernel: (ahc0:B:1:0): Received SDTR period 19, offset f Nov 19 10:58:25 fnu /kernel: Filtered to period 19, offset f Nov 19 10:58:25 fnu /kernel: ahc0: target 1 synchronous at 10.0MHz, offset = 0xf Nov 19 10:58:25 fnu /kernel: Creating DISK da0 Nov 19 10:58:25 fnu /kernel: sa0 at ahc0 bus 0 target 3 lun 0 Nov 19 10:58:25 fnu /kernel: sa0: Removable Sequential Access SCSI-2 device Nov 19 10:58:25 fnu /kernel: sa0: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:58:25 fnu /kernel: Creating DISK cd0 Nov 19 10:58:25 fnu /kernel: pass0 at ahc0 bus 0 target 3 lun 0 Nov 19 10:58:25 fnu /kernel: pass0: Removable Sequential Access SCSI-2 device Nov 19 10:58:25 fnu /kernel: pass0: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:58:25 fnu /kernel: pass1 at ahc0 bus 1 target 1 lun 0 Nov 19 10:58:25 fnu /kernel: pass1: Fixed Direct Access SCSI-2 device Nov 19 10:58:25 fnu /kernel: pass1: Serial Number WS7020328292 Nov 19 10:58:25 fnu /kernel: pass1: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:58:25 fnu /kernel: pass2 at ahc0 bus 1 target 2 lun 0 Nov 19 10:58:25 fnu /kernel: pass2: Removable CD-ROM SCSI-2 device Nov 19 10:58:25 fnu /kernel: pass2: 3.300MB/s transfers Nov 19 10:58:25 fnu /kernel: Mounting root from ufs:/dev/da0s2a Nov 19 10:58:25 fnu /kernel: (cd0:ahc0:1:2:0): READ CD RECORDED CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 Nov 19 10:58:25 fnu /kernel: (cd0:ahc0:1:2:0): NOT READY asc:3a,0 Nov 19 10:58:25 fnu /kernel: (cd0:ahc0:1:2:0): Medium not present Nov 19 10:58:25 fnu /kernel: cd0 at ahc0 bus 1 target 2 lun 0 Nov 19 10:58:25 fnu /kernel: cd0: Removable CD-ROM SCSI-2 device Nov 19 10:58:25 fnu /kernel: cd0: 3.300MB/s transfers Nov 19 10:58:25 fnu /kernel: cd0: Attempt to query device size failed: NOT READY, Medium not present Nov 19 10:58:25 fnu /kernel: da0 at ahc0 bus 1 target 1 lun 0 Nov 19 10:58:25 fnu /kernel: da0: Fixed Direct Access SCSI-2 device Nov 19 10:58:26 fnu /kernel: da0: Serial Number WS7020328292 Nov 19 10:58:26 fnu /kernel: da0: 10.000MB/s transfers (10.000MHz, offset 15) Nov 19 10:58:26 fnu /kernel: da0: 8683MB (17783204 512 byte sectors: 255H 63S/T 1106C) Nov 19 10:58:26 fnu /kernel: da0s1: type 0x6, start 63, end = 80324, size 80262 : OK Nov 19 10:58:26 fnu /kernel: da0s2: type 0xa5, start 80325, end = 17767889, size 17687565 : OK Nov 19 10:58:26 fnu /kernel: start_init: trying /sbin/init Nov 19 10:58:26 fnu ntpd[87]: ntpd 4.0.99b Sat Nov 11 04:57:21 MST 2000 (1) Nov 19 10:58:26 fnu ntpd[87]: using kernel phase-lock loop 2040 Nov 19 10:58:26 fnu ntpd[87]: using kernel phase-lock loop 2041 Nov 19 10:58:29 fnu /kernel: Linux-ELF exec handler installed >How-To-Repeat: Make a kernel using this config and attempt to boot on a tyan tempest II motherboard. >Fix: None. Tried including different devices from GENERIC kernel to see if it made a difference but I couldn't figure out a work-around. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 3:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7949B37B4C5 for ; Mon, 20 Nov 2000 03:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA27819; Mon, 20 Nov 2000 03:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from tatsuki.ohnolab.org (PPP1042.tokyo-ip.dti.ne.jp [211.132.76.42]) by hub.freebsd.org (Postfix) with ESMTP id D8EE337B479 for ; Mon, 20 Nov 2000 03:38:26 -0800 (PST) Received: (from root@localhost) by tatsuki.ohnolab.org (8.9.3/8.9.3) id UAA00499; Mon, 20 Nov 2000 20:36:57 +0900 (JST) (envelope-from kimoto) Message-Id: <200011201136.UAA00499@tatsuki.ohnolab.org> Date: Mon, 20 Nov 2000 20:36:57 +0900 (JST) From: kimoto@ohnolab.org Reply-To: kimoto@ohnolab.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/22971: RealProducer doesn't work on linux emulation. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22971 >Category: i386 >Synopsis: RealProducer doesn't work on linux emulation >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 20 03:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Masahiko KIMOTO >Release: FreeBSD 4.1-RELEASE i386 >Organization: Tokyo Institute of Technology >Environment: FreeBSD 3.x, 4.x and current. Linux Emulation base-6.1. Any SoundCards, Any Sound drivers. >Description: RealProducer doesn't work on linux emulation on any version of FreeBSD because of lack of a ioctl for /dev/mixer which is used by RealProducer. >How-To-Repeat: Install RealProducer, enable linux emulation and run realproducer. It terminates with error message of 'ioctl is not implemented' >Fix: Simply add the conversion of the ioctl to linux emulation module. The following patch for FreeBSD 4.1-RELEASE solves the problem. Please apply it to current. *** sys/i386/linux/linux_ioctl.c.orig Mon Nov 20 20:22:07 2000 --- sys/i386/linux/linux_ioctl.c Mon Nov 20 20:23:11 2000 *************** *** 1044,1049 **** --- 1044,1053 ---- args->cmd = SETDIR(SOUND_MIXER_WRITE_LINE3); return (ioctl(p, (struct ioctl_args *)args)); + case LINUX_SOUND_MIXER_WRITE_RECSRC: + args->cmd = SETDIR(SOUND_MIXER_WRITE_RECSRC); + return ioctl(p, (struct ioctl_args *)args); + case LINUX_OSS_GETVERSION: { int version = linux_get_oss_version(p); return (copyout(&version, (caddr_t)args->arg, sizeof(int))); *** sys/i386/linux/linux_ioctl.h.orig Mon Nov 20 20:23:43 2000 --- sys/i386/linux/linux_ioctl.h Mon Nov 20 20:24:08 2000 *************** *** 163,168 **** --- 163,169 ---- #define LINUX_SOUND_MIXER_WRITE_LINE1 0x4d0E #define LINUX_SOUND_MIXER_WRITE_LINE2 0x4d0F #define LINUX_SOUND_MIXER_WRITE_LINE3 0x4d10 + #define LINUX_SOUND_MIXER_WRITE_RECSRC 0x4dff #define LINUX_OSS_GETVERSION 0x4d76 #define LINUX_SOUND_MIXER_READ_DEVMASK 0x4dfe #define LINUX_SNDCTL_DSP_RESET 0x5000 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 5:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8ECF37B4C5 for ; Mon, 20 Nov 2000 05:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA46872; Mon, 20 Nov 2000 05:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7FD1137B479; Mon, 20 Nov 2000 05:13:18 -0800 (PST) Message-Id: <20001120131318.7FD1137B479@hub.freebsd.org> Date: Mon, 20 Nov 2000 05:13:18 -0800 (PST) From: aritz@altkom.com.pl To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: gnu/22972: Internal Compiler Error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22972 >Category: gnu >Synopsis: Internal Compiler Error >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 20 05:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Andrzej Ritz >Release: 4.1.1 >Organization: Altkom >Environment: FreeBSD poplog.multimedia 4.1.1-RELEASE #0: Tues Sept 26 00:46:59 GMT 2000 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 >Description: internal compiler error in 'const_hash', at varasm.c:2372 The file I am compiling looks like this void Pd::init_ftab(void) { struct fdef ftab[] = { {"eval", SUBR, &Pd::Eval }, { /* many more */ }, { NULL } } } >How-To-Repeat: Try and compile my code. I'll send you a copy if necessary. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 9:30:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20B0D37B479 for ; Mon, 20 Nov 2000 09:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA91964; Mon, 20 Nov 2000 09:30:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from sep.hamburg.com (sep.hamburg.com [194.64.112.14]) by hub.freebsd.org (Postfix) with ESMTP id BFF5337B479 for ; Mon, 20 Nov 2000 09:22:56 -0800 (PST) Received: (from hmo@localhost) by sep.hamburg.com (8.11.1/8.11.1/hmo03sep00) id eAKHMoc51471; Mon, 20 Nov 2000 18:22:51 +0100 (CET) (envelope-from hmo) Message-Id: <200011201722.eAKHMoc51471@sep.hamburg.com> Date: Mon, 20 Nov 2000 18:22:51 +0100 (CET) From: FreeBSD-gnats-submit@oldach.net Reply-To: FreeBSD-gnats-submit@oldach.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/22979: newvers.sh should retain SNAPDATE from environment Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22979 >Category: conf >Synopsis: sys/conf/newvers.sh erases SNAPDATE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 20 09:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Helge Oldach >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: >Description: sys/conf/newvers.sh uses the SNAPDATE variable to amend the RELEASE tag of a kernel. For custom kernels SNAPDATE could be used to add private tags (e.g. CTM delta number, or date) to the kernel tag. Unfortunately newvers.sh zeroes out SNAPDATE before applying it to RELEASE, rendering it useless. >How-To-Repeat: >Fix: --- /usr/src/sys/conf/newvers.sh Tue Oct 31 20:34:15 2000 +++ /tmp/q/newvers.sh Mon Nov 20 18:19:36 2000 @@ -38,7 +38,6 @@ REVISION="4.2" BRANCH="BETA" RELEASE="${REVISION}-${BRANCH}" -SNAPDATE="" if [ "X${SNAPDATE}" != "X" ]; then RELEASE="${RELEASE}-${SNAPDATE}" fi >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 9:30:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4848C37B4D7 for ; Mon, 20 Nov 2000 09:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA91973; Mon, 20 Nov 2000 09:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 362FB37B4D7; Mon, 20 Nov 2000 09:28:53 -0800 (PST) Message-Id: <20001120172853.362FB37B4D7@hub.freebsd.org> Date: Mon, 20 Nov 2000 09:28:53 -0800 (PST) From: m.pizzi@net-one.it To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22980: Strange behaviour in domain name resolution!! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22980 >Category: misc >Synopsis: Strange behaviour in domain name resolution!! >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 20 09:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Marco Pizzi >Release: FreeBSD 4.2-RELEASE >Organization: Net1, srl >Environment: FreeBSD parigi.net-one.it 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Nov 20 17:57:29 CET 2000 root@parigi.net-one.it:/usr/obj/usr/src/sys/PARIGI i386 >Description: Hello, There is a strange behaviour related to domain name resolution. See this: -- parigi# nslookup nw_milano.bgsdarcy.it Server: ginevra.net-one.it Address: 212.177.116.30 Non-authoritative answer: Name: nw_milano.bgsdarcy.it Address: 193.70.120.194 -- Now, look at this: --- parigi# telnet nw_milano.bgsdarcy.it 25 nw_milano.bgsdarcy.it: Non-recoverable failure in name resolution --- What???? This is very severe, because this machine is one of our smtp servers, and many mails didn't started! Please, help us. >How-To-Repeat: #nslookup nw_milano.bgsdarcy.it #telnet nw_milano.bgsdarcy.it 25 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 11: 1:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7014637B4C5 for ; Mon, 20 Nov 2000 11:00:20 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA06742 for freebsd-bugs@freebsd.org; Mon, 20 Nov 2000 11:00:07 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 20 Nov 2000 11:00:07 -0800 (PST) Message-Id: <200011201900.LAA06742@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/12/21] kern/5355 bp Fix for NULLFS problems o [1998/02/03] kern/5641 jasone running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/08] i386/7859 luigi fatal trap 12 in midi_synth_input o [1998/09/28] kern/8074 se CAM rescan operation fatal f [1998/10/06] i386/8179 Install failure with motherbord using SIS a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/03/01] kern/10332 gibbs System freezes during certain SCSI activi o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 bp can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/17] kern/10636 ipfw problems o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725 stb Wrong Cyrus IMAP deliver group o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi f [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap f [1999/04/17] kern/11196 kernel mode page fault o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/10] kern/11629 dillon File descriptor table sharing is broken o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/13] i386/11681 gibbs Adaptec 2940 UW SCSI Controller BIOS 1.34 o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br f [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han f [1999/07/21] misc/12743 Cannot boot the 3.2 floppies o [1999/08/02] misc/12923 Installation fails on HP Net Server o [1999/08/06] bin/12998 des still inetd junk pointer too low to make o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/23] alpha/13338 alpha panic: pmap_remove_all: pv_table for 162b o [1999/08/24] kern/13352 No support for Promise Ultra/66 o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/09] alpha/13653 alpha panic: pmap_remove_all: pv_table for 90b6 o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m f [1999/09/20] i386/13849 grog dump on vinum r5 freezes system o [1999/09/22] i386/13892 Kern.flp does not boot on Compaq Presario o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit f [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing panic o [2000/02/09] i386/16620 mdodd 4.0-20000208-CURRENT fails to boot on ASU o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 mckusick The kernel panics with "ffs_clusteralloc: o [2000/02/18] i386/16802 An user math program have the system on K o [2000/02/19] kern/16828 High Speed Pinging Over 8184 bytes Kills o [2000/02/21] kern/16890 Fatal trap 12: page fault while in kernel o [2000/02/26] kern/17011 Fatal trap 12 occur, dhclient with BOOTP o [2000/02/28] kern/17067 consistent "make -k buildworld" crash wit o [2000/03/03] kern/17152 alfred kernel panic:aio_write o [2000/03/07] kern/17248 FreeBSD 3.4 won't install on 486/100 IBM o [2000/03/10] kern/17305 advansys driver time-out around 30 minute o [2000/03/12] kern/17339 3.4-R on a K6-2: panic: pmap_release: fre o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke f [2000/03/15] i386/17398 imp Install failure of 4.0-Release via ftp an o [2000/03/18] i386/17485 Partition editor completely non-functiona o [2000/03/22] i386/17558 ncr1 controller is not working properly i o [2000/03/23] kern/17565 4.0-RELEASE install does not access IDE d o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/04/03] kern/17776 RAID5 with crashed disk corrupts filesyst o [2000/04/04] bin/17791 Restore does not handle bad or missing ta o [2000/04/04] misc/17793 Keyboard not found o [2000/04/04] ports/17806 msmith make in ports/net/citrix_ica loops on scr o [2000/04/04] i386/17808 cannot swap /dev/.... o [2000/04/05] kern/17821 Wavelan driver not working in 4.0 o [2000/04/08] kern/17870 n_hibma 4.0-release consistently crashes a couple o [2000/04/09] kern/17881 4.0-RELEASE kern.flp boot crashes upon pr f [2000/04/13] kern/17971 cannot boot 4.0 floppies to install o [2000/04/18] kern/18074 Fatal trap 12: page fault while in kernel o [2000/04/20] i386/18123 4.0-RELEASE crashes during boot from CD-R o [2000/04/23] kern/18182 Remote serial gdb no longer works since m o [2000/04/24] bin/18198 owner of ccontrol file in spool dir is wr o [2000/04/24] misc/18201 Freeze at boot time when trying to upgrad o [2000/04/25] misc/18205 Install via CD-Romm hangs o [2000/04/25] i386/18207 3.2-RELEASE to 4.0-RELEASE FTP upgrade fa o [2000/04/27] kern/18265 Vendor specific word = FFFF f [2000/05/04] kern/18387 grog when performing certain vinum operations, o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru o [2000/05/13] bin/18531 installation will not read files frm flop o [2000/05/16] ports/18606 billf cannot install the latest ucd-snmp port o [2000/05/17] kern/18623 out of swap s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig o [2000/05/18] i386/18655 4.0-RELEASE Fails to install o [2000/05/18] kern/18665 Unpredictable crashes. Page fault while i o [2000/05/21] kern/18712 Kernel panic o [2000/05/22] kern/18754 grog Vinum: reviving RAID5 volume corrupts dat o [2000/05/23] misc/18786 SCSI hangs during FreeBSD 4.0 installatio s [2000/05/24] misc/18793 ken Hitachi DK319H needs quirk entry to work o [2000/05/25] alpha/18808 alpha Unalligned trap handler fails on quadword o [2000/05/29] kern/18874 32bit NFS servers export wrong negative v o [2000/05/29] bin/18887 Undefined symbol "_krb_err_txt" in telnet f [2000/06/03] kern/18982 make buildworld freezes my machine with a o [2000/06/04] kern/19000 Automatic Reebot, Fatal o [2000/06/05] kern/19022 pcm driver causes immediate panic on use o [2000/06/05] i386/19027 FTP install operation does not find XFree f [2000/06/09] kern/19162 asmodai 4.0-STABLE panics w/ softupdates and quot o [2000/06/10] misc/19175 mounting NFS can be done multiple times C o [2000/06/13] kern/19247 jasone uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom o [2000/06/15] kern/19297 Multi-processor kernel fails to boot on T o [2000/06/16] conf/19336 write failure when adding distribution fi o [2000/06/16] i386/19338 ProLiant DL360 dual proc. locks when boot o [2000/06/17] kern/19353 Cannot install 4.0 o [2000/06/23] kern/19480 System hang when use current (GENERIC) ke o [2000/06/26] bin/19529 Burning cdrom with burncd fails o [2000/06/27] kern/19551 bmilekic panic when enabling bridge_ipfw o [2000/06/28] kern/19572 executing command cd ../cdrom after mount a [2000/06/30] ports/19613 nate java causing SIGSEGV 11* segmentation vi o [2000/07/01] conf/19629 imp /etc/rc.sysctl can't set all syctls f [2000/07/03] kern/19661 imp hang or reboot when pcmcia ethernet adapt o [2000/07/05] kern/19726 wpaul fatal trap 12 / page fault o [2000/07/09] kern/19794 FreeBSD 4.0-Stable crash o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/20] ports/20077 jmz Latex 99.12 fails to make completely f [2000/07/25] kern/20175 Unknown Ethernet Card o [2000/07/26] misc/20205 FreeBSD 4 will not install on a Compaq Pr o [2000/07/27] kern/20227 jlemon 4.1-RC: UDP checksum problem f [2000/07/29] kern/20296 sheldonh matcd driver is a) not in GENERIC and b) o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/01] misc/20353 4.1 doesn't work on Compaq ML370 o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] kern/20484 jlemon FreeBSD 4.0 crashes repeatedly: trap 12: o [2000/08/08] bin/20489 davidn pw problems: -w random not working correc o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/15] ports/20624 emulationvmware vmmon module locks kernel o [2000/08/16] kern/20671 wpaul panicstr:page fault; panic messages:Fatal f [2000/08/22] kern/20776 rnordier Cannot boot the install floppy for versio o [2000/08/22] i386/20791 gibbs Adaptec 2940UW bootup errors in FSD 4.0/3 o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/02] i386/20994 /etc/fstab or kernel not correctly instal f [2000/09/02] kern/21009 /etc/security make the system hangup o [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model f [2000/09/05] i386/21071 gibbs SCSI Controller Not Detected When Attempt o [2000/09/06] kern/21079 ume IPSEC, kernel ARPs for tunnel endpoint in f [2000/09/08] i386/21117 When booting 4.0 install disk receive thi f [2000/09/09] kern/21148 grog multiple crashes while using vinum o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/13] bin/21253 dump/restore fail on any stream (tape/pip o [2000/09/14] misc/21269 Install does not see disk on Advansys car o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 gibbs ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 o [2000/09/18] kern/21378 Accessing floppy under 4.1-STABLE (with D o [2000/09/19] kern/21397 Floppy drive doesn't work on Compaq ProLi o [2000/09/20] kern/21438 cg Sox recording in 16 bits creates a panic: o [2000/09/21] ports/21466 jseger port xpaint-2.5.7 won't make install o [2000/09/26] bin/21566 passwd does not work after updating from o [2000/09/27] kern/21592 insufficient PAP authentication in isp pr o [2000/10/01] i386/21677 Instalation crashed when shell started o [2000/10/02] i386/21717 DOS while opening /dev/audio o [2000/10/04] kern/21757 cp from nullfs-mounted filesystem aborts o [2000/10/04] i386/21758 X display font problem o [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR o [2000/10/06] misc/21782 4.1.1 and ADAPTEC 29160N SCSI controller o [2000/10/06] kern/21783 When msgrcv() blocks, it blocks ALL threa o [2000/10/06] kern/21790 marcel fstat64 does not exist in Linux emulation o [2000/10/06] i386/21802 after working fine for a few weeks, mach o [2000/10/08] kern/21831 gibbs kernel trap 12 crash in 4.1.1-STABLE o [2000/10/08] kern/21845 crash, while tring to send udp via half-b o [2000/10/09] misc/21861 PostgreSQL on jailed enviroment fails o [2000/10/11] kern/21915 gibbs Machine dies sig 12 in ahc driver (Freebs f [2000/10/12] kern/21929 lpd cause system crash o [2000/10/12] kern/21932 gibbs 4.1.1-RELEASE : trap 12 during install o [2000/10/18] bin/22077 X-Windows broken o [2000/10/18] kern/22086 DMA errors during intensive disk activity o [2000/10/18] kern/22103 grog 4.1-R with Adaptec and Vinum crashes on p o [2000/10/19] alpha/22128 alpha Cannot install 4.1.1 on an Alpha AS200 o [2000/10/19] kern/22141 Missing include file in if_tx.c o [2000/10/22] kern/22224 ipfw pipe command causes kernel panic o [2000/10/23] i386/22236 mouse cursor bug under text console mode o [2000/10/23] i386/22240 unstable UDMA on Iwill VD133PL v1.6 (Apol a [2000/10/23] kern/22245 Incorrect handling of end-of-media in ata o [2000/10/26] kern/22324 Kernel panic when second Compaq Smart Arr o [2000/10/28] kern/22376 Some problems in ar driver with FastTrak o [2000/10/29] kern/22391 panic: worklist_remove: not on list o [2000/10/29] bin/22404 Solution of "passwd" and "cannot set pass o [2000/10/31] ports/22444 ache The 'screen' port has reproducable segfau o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel o [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) o [2000/11/02] kern/22561 xl networkhanging o [2000/11/03] bin/22595 telnetd tricked into using arbitrary peer o [2000/11/06] i386/22640 SCSI problem halts system after long peri o [2000/11/06] kern/22648 SCSI sup system freezes 4.2-BETA o [2000/11/06] i386/22652 May be a bug o [2000/11/08] kern/22711 rwatson [PATCH] non-root users can't debug o [2000/11/10] i386/22760 adaptec bios cannot find disks after 4.1. o [2000/11/12] kern/22799 make kernel failed on src-cur.4602 o [2000/11/12] i386/22800 jkh 4.2 rc1 install runs newfs on parts marke o [2000/11/16] kern/22909 Vinum RAID5 degraded write not consistenc o [2000/11/17] alpha/22932 alpha not installing on Digitall alpha series 2 o [2000/11/18] kern/22953 keu driver throws 'usb error on rx: IOERR o [2000/11/20] gnu/22972 Internal Compiler Error o [2000/11/20] misc/22980 Strange behaviour in domain name resoluti 269 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps f [1996/08/22] kern/1533 dillon Machine can be panicked by a userland pro o [1996/09/29] kern/1689 TCP extensions throttles distant connecti s [1996/10/26] bin/1892 n_hibma install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly f [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA f [1997/01/09] bin/2430 grog mountd stops on loading if subnet mask is o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/22] kern/2800 DDS large data writing probrem f [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() f [1997/05/12] kern/3582 panic: bad dir (mangled entry) in 2.2-STA s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working f [1997/06/03] kern/3771 dillon NFS hangs when writing to local FS re-mou f [1997/06/04] i386/3779 changing cursor to blinking block causes o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 imp restore doesn't correctly handle "sparse" o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/14] bin/5297 will make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af o [1997/12/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/19] kern/5794 Kernel Panic o [1998/02/28] kern/5877 sb_cc counts control data as well as data f [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A f [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use f [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free f [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 dillon Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/19] kern/6351 DPT RAID controller stops working under h o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/05/03] kern/6506 system will not soft reboot a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/12] kern/6603 ncr driver hangs under high load f [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] misc/6773 kris [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 will make(1) exhibits confusing and non-standa o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] kern/7038 shimon Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u s [1998/07/05] kern/7169 cannot use accton on a append-only file s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/26] kern/7405 dillon in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 dillon Machine crashes do not occur very often, s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 dillon -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/09] bin/7872 dwmalone [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas f [1998/09/28] misc/8070 can't get a system with an NCR 810 contro o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can f [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 Mail doesn't respect REPLYTO in .mailrc o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/03] kern/8561 /kernel inode change time changes every r f [1998/11/05] kern/8580 dillon Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] ports/8622 markm exmh2 has problems with some date formats o [1998/11/10] bin/8646 peter Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device f [1998/11/11] kern/8657 dillon nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/02] kern/8940 system clock runs extremely slowly (and s f [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/16] kern/9095 swap detect error o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] kern/9163 peter [patch] squid does not join a multicast g o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/11] bin/9440 obrien amd can't mount filesystems with type:=uf o [1999/01/13] kern/9478 support for running a script from kldload f [1999/01/14] kern/9487 pcm: mixer's synth and cd devices are swa o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 s [1999/01/22] docs/9618 asmodai many typos in groff_mm(7) f [1999/01/25] kern/9673 ISO CD-ROM Problem f [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with f [1999/02/09] bin/9982 ume inet_addr(3) should be return 32bit uint. o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/15] kern/10107 dillon interlock situation with exec_map and a p f [1999/02/25] bin/10264 davidn passwd(1) tryis NIS even with `-l' switch o [1999/02/25] kern/10265 file locking does not work with kernel pt o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/28] misc/10302 jkh installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp f [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "ipforward_rt" is not cleared when routin o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/05] i386/10969 kernel fails to compile with ccs0 f [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11523 3.1-STABLE BRIDGE option does not work o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio f [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] kern/11697 gibbs Disk failure hangs system f [1999/05/18] kern/11766 darrenr Can not traceroute through ipnat. o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/19] misc/11778 mpz_get_str() in libgmp leads up to cored f [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. f [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 phk System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes f [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. o [1999/06/12] gnu/12175 obrien gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/16] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang f [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/21] kern/12320 error 6: panic: cannot mount root (2) o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/28] kern/12434 signal 11 (core dumped) on mysqld when ma o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken f [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/07] docs/12557 nik There are no man pages for the widely use o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/14] misc/12640 Can use 2nd CD-ROM for fixit mode. o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/22] kern/12758 Adjusting the idle priority of a process o [1999/07/23] i386/12771 lpt hangs and never works again, even aft o [1999/07/24] kern/12800 buffer leak in cluster_wbuild o [1999/07/27] alpha/12832 alpha config -g creates broken Makefile in 3.2- o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] kern/12991 system queue is cleared when a port or pi f [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( f [1999/08/10] i386/13058 Installation hangs after commit o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/25] kern/13382 Only 1 parallel port supported if pps ena o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 obrien gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc f [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/09/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13612 gibbs "Timedout SCB handled by another timeout" o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker f [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/12] bin/13711 root fs not properly unmounted after shut o [1999/09/12] ports/13714 stb netatalk-1.4b2+asun2.1.3 fails chmod g+s o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c f [1999/09/15] i386/13765 memory problem: compilation of emacs dies o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/16] conf/13785 jkh boot block/manager problem at installatio o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms f [1999/09/20] i386/13857 Problem with switching between processes s [1999/09/22] alpha/13912 alpha unaligned access Problem seems to be aff o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/26] bin/13980 Parameter expansion pattern removal bug i o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() f [1999/10/07] misc/14178 FreeBSD 3.2 - Calls from CGI scripts, cro o [1999/10/07] kern/14183 grog bridge forwarding corrupted broadcast IP o [1999/10/10] bin/14250 dwmalone restore(8) can loop if tty goes away or w o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] kern/14285 dillon NFS client appears to lose data f [1999/10/14] i386/14324 wst OR atapi drivers won't work o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/15] kern/14354 grog vinum cannot compile for alpha f [1999/10/20] misc/14431 Network Interface Problem o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/25] bin/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 murray when sysinstall is running as init it sho o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master f [1999/11/10] misc/14811 getpwent is not enumerating all entries i o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/11] ports/14826 obrien security/fwtk smapd calls sendmail with w o [1999/11/12] bin/14844 rwhod is remotely crashable o [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a s [1999/11/18] bin/14978 gad [MFC] lprm(1) does not kill active daemon o [1999/11/19] kern/14997 NFSv3 open O_EXCL fails to set proper "at o [1999/11/19] i386/15003 mdodd 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed f [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] conf/15150 phantom Taking encoding scheme latin1 into accoun o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/12/01] kern/15204 systems panics when ktrace-ing a [1999/12/02] misc/15228 C++ exceptions+threads SIGABRTs. o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/05] misc/15269 error server timeout downloading small fi o [1999/12/06] i386/15327 Unable to use ISA sound card with AD1816A o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/13] bin/15471 kris Fix several buffer overflows o [1999/12/13] kern/15475 pppd(8) sets the Source Address field of o [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/14] kern/15486 Attempt to write to a "write-prot" floppy o [1999/12/15] kern/15508 disk usage after "strip" is wrong o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/17] ports/15543 hosokawa Samba + DHCP = UNKNOWN HOST NAME o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/18] kern/15554 malloc fails in OMAGIC programs o [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/21] misc/15610 3.4-RELEASE installation hang on aic0 SCS o [1999/12/21] kern/15611 EIDE Large Disk Support, Newfs problem, F f [1999/12/22] i386/15631 3.4 won't install with IBM 37.5 gb disks o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [1999/12/29] conf/15766 My desktop display is too large, I can´t o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system o [2000/01/01] bin/15829 peter cvs -C not_a_number core dumps o [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] misc/15869 3.4-STABLE-20000103 install fails to disk f [2000/01/03] kern/15870 small PicoBSD Kernel link fails o [2000/01/03] bin/15877 Perl 5.00503 interpreter crashes with a s o [2000/01/04] i386/15879 System hangs while watching the tv and ap o [2000/01/04] gnu/15892 NFS-exported ext2 file system makes Linux o [2000/01/04] i386/15897 Any fix for rpc.lockd on Free BSD 3.2 nfs o [2000/01/05] ports/15922 chuckr print/a2ps cannot find ogonkfied fonts [p o [2000/01/05] bin/15924 ndc restart don't preserve start options o [2000/01/07] i386/15961 System allows no keyboard input after flo o [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/09] bin/16014 New cvs in -stable prints consistent erro o [2000/01/10] kern/16040 Read-only files under NFS are not seen as o [2000/01/11] misc/16068 FreeBSD 3.3 with IDE > 32GB causes Panic: o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/01/13] misc/16102 root's home directory is too open o [2000/01/14] kern/16122 Incorrect SysV SHM segment accounting by o [2000/01/15] i386/16132 FreeBSD doesn't install on Notebook w/ Sy o [2000/01/17] misc/16154 modem ring kills freebsd o [2000/01/17] bin/16155 cp -p does not preserve modification time o [2000/01/17] i386/16164 "vga"/"sc" don't work when a video card i o [2000/01/18] kern/16171 mmap(2) of /dev/kmem cause kernel panic s [2000/01/18] bin/16186 gad [MFC] [PATCH] Insecure use of strncpy() a o [2000/01/18] misc/16197 Installation problems on IBM Thinkpad 365 o [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel f [2000/01/20] misc/16238 e-bones has a Y2K bug o [2000/01/20] kern/16239 dillon NFS mount file system from multi-homed re o [2000/01/20] bin/16244 [PATCH] don't allow password re-use when o [2000/01/21] kern/16257 Kernel panic in sbdrop o [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli o [2000/01/21] bin/16271 vi has wrong len type in re_tag_conv() o [2000/01/22] kern/16299 nfs.ko can be unloaded when nfsd is runni o [2000/01/23] kern/16318 Fix for wrong interface when adding new r o [2000/01/23] alpha/16319 alpha No trailing newline in /usr/src/lib/libc/ o [2000/01/24] bin/16342 Problems with krb_realmofhost() and/or kr o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection o [2000/01/25] bin/16353 rlogin encryption is broken on transmit s o [2000/01/27] ports/16396 reg libtool -export-symbols doesn't restrict f [2000/01/27] ports/16410 kris ssh and x forwarding problem o [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/01/28] misc/16423 Installation problem of 3.4-RELEASE using o [2000/01/30] gnu/16481 Cpp crashes frequently o [2000/01/30] i386/16482 IDE disk fails on secondary IDE master de o [2000/02/06] kern/16515 Deadlock by ntpd o [2000/02/08] bin/16578 host-name field is hexadecimal instead of o [2000/02/08] conf/16586 net if down after fail during install o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/09] kern/16598 xmcd stopped by racd0c ioctl error while o [2000/02/09] kern/16605 samba 2.0.6 under 3.4-RELEASE can't open o [2000/02/09] ports/16621 marcel emulators/linux_base needs to be installe o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/10] bin/16645 Inetd(8) internal ident won't work with m o [2000/02/18] bin/16812 level 0 dump runs forever -- generates a o [2000/02/18] kern/16816 vop_stdpoll() in /sys/kern/vfs_default.c o [2000/02/20] conf/16832 amd.map options won't play with Solaris N o [2000/02/20] kern/16849 Close on an ide tape drive hangs o [2000/02/20] misc/16860 suggetion on installation process. o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/22] bin/16920 cdcontrol fails under 4.0-20000214-CURREN o [2000/02/23] kern/16937 ie0 not probed in -current of 2000-02-18 o [2000/02/23] conf/16948 murray Sysinstall/disklabel: bad partition table o [2000/02/23] ports/16955 markm 'pgp5' built with ports/security/pgp5 doe o [2000/02/25] ports/16983 ache procmail port not prefix clean o [2000/02/25] misc/16991 jhb booting install disk and USB o [2000/02/27] kern/17033 Samsung SN-124 ATAPI CD-ROM not supported o [2000/02/28] bin/17056 rshd does improper home directory check o [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/01] conf/17117 Dial-up problems when using Kppp o [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting o [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/03] kern/17146 panic in devfs_open() while mounting devi o [2000/03/03] kern/17153 mjacob Qlogic Ultra3 cards seem to write very sl o [2000/03/05] kern/17208 3.4 Lock-up during file-completion o [2000/03/06] i386/17228 Installation floppies hang up on Compaq A o [2000/03/06] misc/17235 endless loop? harddrive corrupted? o [2000/03/06] ports/17237 hosokawa in samba suite smbclient -M worked incorr o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/11] ports/17313 ache wu-ftpd ports install invalid file owners o [2000/03/11] ports/17314 hosokawa in samba: testparm incorrectly generate w o [2000/03/12] bin/17338 netstat shows down counting UDP delivery o [2000/03/12] i386/17346 APIC cannot be enabled without turning on o [2000/03/13] bin/17360 green [PATCH] Cleanup bug in pam_ssh o [2000/03/14] i386/17374 Archive QIC02 tape-unit device randomly h o [2000/03/14] kern/17375 yokota kldload/unload cycles with syscons screen o [2000/03/15] kern/17393 kldload syscall allows the same kernel mo o [2000/03/16] kern/17403 cg CS4232 wont play w/newpcm o [2000/03/16] conf/17406 nis in /etc/host.conf breaks network prog o [2000/03/16] alpha/17410 alpha Bad tag on Alpha boot floppies o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/16] i386/17423 System hangs then reboots o [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/18] bin/17482 ftpd(8) forget to close TCP port in passi o [2000/03/18] kern/17483 Cannot run disklabel on virgin disk o [2000/03/19] kern/17494 Two problems with the tun device o [2000/03/19] kern/17499 grog Can't revive VINUM RAID5 o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load f [2000/03/21] i386/17526 PB of frequency heuristic in uipc_socket. o [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg o [2000/03/21] kern/17542 cg random static with GUS PnP o [2000/03/22] misc/17562 PAS16 sound cycles o [2000/03/23] misc/17567 make buildworld bombing at KerbIV o [2000/03/24] kern/17583 julian NETATALK code can corrupt mbuf free lists o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/26] kern/17613 impossible to build FS KLD without kernel o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] kern/17634 cg Non-deterministic PnP sound device config o [2000/03/28] kern/17636 FreeBSD 4 uses network card driver dc whe s [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/28] ports/17652 stb netatalk port modification for des/md5 ch o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/29] kern/17680 Multiple crashes due to load in 4.0/5.0 e o [2000/03/30] kern/17695 cg Vibra16X sound card doesn't record audio o [2000/03/30] kern/17697 Boot floppy+local ftp upgrade from 3.4/in o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/03/31] kern/17715 io memory requests from pnp devices lands o [2000/04/01] kern/17738 reboot after panic: softdep_lock: locking o [2000/04/02] i386/17755 FTP install of 4.0 allocates too few inod o [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [2000/04/03] kern/17779 ADIC 1200d (DAT changer) and Symbios SCSI o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa o [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/06] misc/17832 Enlightenment gives Segmentation fault o [2000/04/07] bin/17841 ttyp0 (and only 0!) produces stdout input o [2000/04/07] kern/17842 Erratic user time reports for long runnin o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m o [2000/04/07] kern/17844 Amd wedges every morning since I've upgra o [2000/04/08] kern/17863 Running DAP reboots computer o [2000/04/08] kern/17871 starting to accumulate undeletable direct o [2000/04/09] i386/17883 4.0-RELEASE panics during install. o [2000/04/10] kern/17895 stale unix domain connections o [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/10] i386/17915 pcm0 direct DMA issues. o [2000/04/10] kern/17923 cg SB16 ISA-PnP sometimes produces loud stat o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/11] i386/17930 wpaul Patch to MFC WaveLAN WEP into 3.4-STABLE o [2000/04/11] kern/17936 panic: resource_list_alloc: resource entr o [2000/04/11] i386/17940 Cannot recongize the scsi card AIC-7899 o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/12] kern/17965 wpaul vr (MII-bus version in 4.0 ONLY) driver l o [2000/04/14] ports/18003 cwt amanda2.4's SCSI changer script (chg-chio o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/15] kern/18024 when printing through gs: panic: lockmgr: o [2000/04/15] kern/18031 alpha system panics cpu_fork during AIO c o [2000/04/17] misc/18065 FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/18] misc/18071 I cannot install Oracle 8i in FreeBSD 4.0 o [2000/04/19] i386/18089 4.0R install hangs on newfs or fsck o [2000/04/19] kern/18096 random crashes probably caused by lockmgr o [2000/04/20] kern/18110 DC-390 SCSI BIOS setting no effect and IB f [2000/04/20] kern/18113 Kernel panic while untarring a large arch o [2000/04/21] i386/18132 BTX dumps trying to boot w/ dedicated SCS o [2000/04/22] bin/18160 pppd does not hang up sometimes while sta o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ o [2000/04/23] bin/18181 Getty can fail to observe :de: specificat o [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot o [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex f [2000/04/25] i386/18212 4.0-RELEASE does not see all disk. o [2000/04/25] bin/18221 DNS resolver can fail for large DNS respo f [2000/04/26] kern/18234 phk 4.0-CURRENT crashes when "make test" in p o [2000/04/27] kern/18252 sysctl -a causes panic o [2000/04/28] i386/18268 RTC BIOS error10 (memorysize) o [2000/04/28] kern/18270 [PATCH] kldunload "vn" doesn't clean up e o [2000/04/28] kern/18285 the system froze when use scon -s 50 f [2000/04/29] kern/18303 grog panic: vinvalbuf: dirty bufs o [2000/04/30] kern/18315 System hang when doing back-to-back captu o [2000/04/30] kern/18316 close-together bt848/878 captures to file o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota kernel crash o [2000/05/18] kern/18650 panic when enabling linux with emu10k1 dr o [2000/05/19] gnu/18672 std::basic_string::c_str() o [2000/05/19] bin/18678 Bug in libz o [2000/05/19] kern/18687 mrouted and IPDIVERT cause a panic o [2000/05/20] kern/18704 GLOB_ERR not handled correctly by glob() o [2000/05/21] misc/18728 Audio and video desynch in Realplayer on s [2000/05/21] kern/18735 asmodai add support to Accton EN1217 network adap o [2000/05/22] bin/18742 times.allow field parsed incorrectly o [2000/05/22] kern/18751 if_dc doesn't autosense 100Mb mode o [2000/05/22] kern/18757 dg [PATCH] fxp driver doesn't enable flow co o [2000/05/22] kern/18763 kernel crashes when sysctl(3) is called o [2000/05/22] alpha/18768 wpaul Digital DE500-BA with "dc" driver doesn't f [2000/05/28] kern/18858 microuptime() errors even after disabling o [2000/05/28] misc/18860 Cannot write DATA record to /home/archive o [2000/05/29] kern/18869 4.0-Stable SMP kernel from 22. May unstab o [2000/05/29] kern/18875 arpintr() problem o [2000/05/30] kern/18899 if_vr.c can't bridging properly when bpf o [2000/05/30] bin/18903 pkg_add deleted its own database o [2000/05/31] kern/18924 sysctl hw.bt848 crashes machine (bktr dri o [2000/05/31] conf/18925 No X Desktop Environments in 4.0 o [2000/05/31] misc/18927 jwd Missing tools in release/scripts/src-inst o [2000/05/31] kern/18932 Total loss of ethernet needing reboot. P o [2000/06/01] i386/18940 Reading from stdin using linux-jdk-1.2.2 o [2000/06/02] kern/18980 ATAPI Drive boots Install CD but then say o [2000/06/03] i386/18981 3.4 CDROM fails to boot on Dell PowerEdge f [2000/06/04] kern/19009 Mounting bad CD-ROM causes crash o [2000/06/05] kern/19020 kernel reboots sometimes o [2000/06/05] misc/19025 Installer assumes /dev exists if target d f [2000/06/06] conf/19080 murray sysinstall's use of host.conf prevents ft o [2000/06/07] ports/19093 obrien problem with mail/muttzilla o [2000/06/08] kern/19121 IPv4 multicast does not work without rout o [2000/06/08] misc/19125 Undefined symbol `_poll' referenced from f [2000/06/12] kern/19219 le driver causes kernel panic during ifco o [2000/06/12] bin/19231 quota/mount commands inconsistency o [2000/06/13] ports/19238 will sgmltools1 o [2000/06/13] i386/19245 -fexpensive-optimizations buggy (even wit o [2000/06/14] kern/19256 in devicedriver cy.c make_dev (..) probl o [2000/06/14] ports/19281 billf Error in ucd-snmp port with tkmib o [2000/06/16] kern/19347 top, CPU and SMP-problem in new kernel o [2000/06/17] bin/19357 swap info incorrect after using sysinstal o [2000/06/18] kern/19363 Do allow processes know about their file o [2000/06/19] bin/19375 makekey accepts only 8-byte password o [2000/06/19] misc/19376 ncurses alters buffering of stdin/stdout o [2000/06/19] kern/19389 Panic caused by sendfile(2) o [2000/06/19] bin/19393 programs using strftime () dump core if R o [2000/06/20] kern/19402 Signals 127 and 128 cannot be detected in o [2000/06/20] bin/19405 telnetd sends DO AUTHENTICATION even if a o [2000/06/23] conf/19461 X authentication doesn't work off the CD o [2000/06/23] kern/19465 SYNC_CHACHE PROBREM: NEWTECH NDA20128A o [2000/06/23] kern/19479 processes stuck in 'ffsvgt' and 'FFS no' o [2000/06/23] kern/19482 Upgrade from 4.0-RELEASE to 4.0-STABLE ca o [2000/06/24] kern/19488 Bug in 4.0-STABLE (acting as a Bridging f o [2000/06/25] kern/19499 EtherExpress 16 is not probed o [2000/06/25] i386/19508 pci bus not probed for pci ethernet card f [2000/06/25] i386/19512 get problem in compile gcc-2.7.2.3 o [2000/06/27] conf/19542 Problem with Proxy f [2000/06/27] misc/19548 DES in 3.5-RELEASE allows trailing charac o [2000/06/27] misc/19557 Denying more than 10 ports with an 'open' a [2000/06/28] ports/19561 andreas Ghostscript 6 in ports refuses to build o [2000/06/28] conf/19569 stock IPFW rules have subtle udp hole o [2000/06/30] kern/19603 luigi 20 ethernet interfaces not compatible wit o [2000/06/30] docs/19604 steve Web query interface doesn't search or Ori o [2000/06/30] bin/19606 Telnet & Telnetd coredump when disabling o [2000/06/30] kern/19612 cg SBLive produces 75% static and 25% actual f [2000/06/30] kern/19614 johan missing blowfish in current kernel tree ( f [2000/06/30] kern/19615 cannot build current kernel (30-june-2000 f [2000/06/30] kern/19616 current kernel build failes on miibus o [2000/07/02] misc/19646 Level 0 dump takes way longer than it sho o [2000/07/02] kern/19654 wpaul 20 dc ports in one machine (5x 4port card o [2000/07/03] i386/19662 kernel panic after too many socket freed o [2000/07/03] kern/19672 dillon contigmalloc1() oddity for large alignmen o [2000/07/03] misc/19673 obrien dhclient-script will not always set the h o [2000/07/05] ports/19711 asami bsd.port.mk and autoconf are conflict o [2000/07/05] kern/19714 dillon swap_pager_getswapspace: failed o [2000/07/06] i386/19737 Cannot build a profiled kernel; load fail o [2000/07/07] bin/19773 [PATCH] telnet infinite loop depending on a [2000/07/08] bin/19789 sos [PATCH] msinfo reports incorrect data for o [2000/07/09] kern/19814 marcel Oracle8i installer triggers problem in th o [2000/07/10] i386/19820 Installation of Lotus Notes 5.0 for Linux o [2000/07/12] kern/19875 A new protocol family, PF_IPOPTION, to ha o [2000/07/12] kern/19880 Problem with configuring RS-232 multiport o [2000/07/13] misc/19909 dillon Problem with NFS client in 4.0-STABLE o [2000/07/15] bin/19946 possible bug in sh(1) with -p flag (privi o [2000/07/15] misc/19951 jmz moused has problems with XFree86 o [2000/07/17] bin/19978 will /usr/bin/make segfaults w/o Makefile for o [2000/07/17] misc/19994 sscanf() fails on 64-bit operations o [2000/07/18] kern/20016 jasone pthreads: Cannot set scheduling timer/Can o [2000/07/18] docs/20028 doc ASCII docs should reflect tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/22] kern/20115 cg pcm0 doesnot work on Panasonic Let's note o [2000/07/23] docs/20117 doc *printf manpage doesn't document %n o [2000/07/24] ports/20156 dirk 1.6.2.2 has some nasty bugs o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/26] bin/20194 amd doesn't provide directories automatic o [2000/07/27] misc/20210 4.1-RC crashes o [2000/07/27] kern/20213 NFS and Linuxulator issues in PR kern/194 o [2000/07/27] kern/20217 avalon IPF default block and inclusion in rc.net o [2000/07/27] bin/20220 unable to Ctrl-C (quit) when using "more" o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/28] alpha/20248 alpha DEFPA FDDI on alpha panics system o [2000/07/28] kern/20256 phk microuptime went backwards message keeps o [2000/07/28] bin/20259 des fetch(1) confused when redirected from ht o [2000/07/28] conf/20272 jkh Missing subdirs in the src/usr.sbin src p o [2000/07/29] conf/20282 murray sysinstall does not recover some /etc fil o [2000/07/30] kern/20299 cg Noise / Scratchiness in 4.1 SBLive driver f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons o [2000/08/01] kern/20340 cg SNDCTL_DSP_GETODELAY on pcm device is inc o [2000/08/02] kern/20361 In in.c:in_addmulti, missing splx when if o [2000/08/02] bin/20372 ftp login incorrect when s/key active but a [2000/08/02] bin/20373 obrien Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, o [2000/08/09] ports/20503 sheldonh apache w/ mod_perl segfaults on 'use IO;' f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d f [2000/08/10] misc/20530 asmodai CMSG_DATA requires additional header file o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/13] ports/20581 ports current cdrecord port fails to install o [2000/08/14] bin/20591 src/usr.bin/file/MAINT & README & file.1 f [2000/08/14] gnu/20608 Problem by 'make world' from update 4.0-R o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, o [2000/08/15] kern/20619 arpintr o [2000/08/15] kern/20631 kernel panics on ifconfig if_le f [2000/08/15] kern/20632 stacking mount_null causes an error: moun o [2000/08/15] bin/20633 jhb fdisk doesn't handle LBA correctly o [2000/08/16] bin/20646 dwmalone [PATCH] /bin/cp -p whines on set[ug]id im o [2000/08/16] ports/20663 andreas MD5 checksum mismatches for ports/databas o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I f [2000/08/17] i386/20685 fbsd 4.1-stable crashed when compiling st f [2000/08/17] misc/20687 murray FTP Install thru http proxy jumps to extr f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] ports/20705 ports xwave port fails to build o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete o [2000/08/18] ports/20711 cwt amanda doesn't like the output from its c o [2000/08/20] bin/20725 Raw floppy writes fail for partial bytes. o [2000/08/20] kern/20734 n_hibma USB mouse detaches and never reataches o [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/22] kern/20785 ru changing IP address on an interface may n o [2000/08/23] misc/20796 After "Waiting 15 seconds for SCSI device o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/24] ports/20822 jmz [PATCH] PAM support broken in XDM o [2000/08/24] ports/20831 torstenb Autoconf Port: Bug introduced by patch-ag f [2000/08/25] i386/20833 On first boot, filesystem failed, startup o [2000/08/25] gnu/20835 markm Errno.pm is lost in perl system o [2000/08/25] kern/20842 dillon NFS client ignores read-only file setting o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/26] misc/20865 murray Installation auto default 50 MB root not o [2000/08/28] gnu/20912 obrien gdb does not recognise old executables. o [2000/08/28] ports/20913 vanilla ports not linking against -ljpeg o [2000/08/29] i386/20925 doscmd(1) does not truncate a file int wr o [2000/08/29] kern/20933 sos ATAPI ZIP drive allows mounted disks to b o [2000/08/30] bin/20952 ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE f [2000/08/31] i386/20973 Probing error-------cannot install o [2000/09/01] ports/20986 reg Mozilla M17 installs incorrectly o [2000/09/02] ports/21002 stb setiathome port has problems under clean s [2000/09/03] ports/21014 will [PATCH] Fix for kdelibs2 PLIST s [2000/09/03] ports/21015 will [PATCH] Fix for kdebase2 PLIST a [2000/09/04] kern/21028 sheldonh Add Zoom V90 Internal modem support o [2000/09/04] ports/21055 ports popper3 dumps core o [2000/09/06] kern/21073 cg PCM sound driver silently accepts imprope o [2000/09/06] i386/21087 tanimura ed driver incorrectly fails probe for ISA o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w o [2000/09/07] ports/21095 ports MASTER_SITES_GNU are semi-broken [PATCH] o [2000/09/08] ports/21116 ports vmware2 does not compile on -current o [2000/09/08] kern/21118 luigi Multiple problems in ipfw's stateful code f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/08] kern/21131 Floppy causing cold boot in -STABLE o [2000/09/08] kern/21132 setting kern.hostid to 2887705710 fails. o [2000/09/08] bin/21133 sail driver dies o [2000/09/08] kern/21139 IBM DNES drives need 'quirk table' entry. o [2000/09/09] kern/21143 `#define schedsofttty' et al. should not o [2000/09/09] ports/21146 green [patch] openssh with LOGIN_CAP don't setu o [2000/09/09] bin/21152 @monthly entry in crontab is run every da o [2000/09/09] kern/21155 Load average (either with uptime both top o [2000/09/10] kern/21162 panic in ffs_softdep.c: handle_workitem_f o [2000/09/10] kern/21173 cg pcm "panic: no feed" with Creative SB AWE o [2000/09/10] kern/21175 peter ISA DMA channels 4-7 operate on wrong mem o [2000/09/11] bin/21208 tar does not support 2.5 GB file o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi o [2000/09/11] ports/21210 dima acroread port missing lib a [2000/09/13] bin/21248 kris openssl dumps core with blank passwords o [2000/09/13] bin/21251 NIS problem - ypbind does loop in CLNT_BR o [2000/09/13] misc/21252 dhclient opens too many files o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21263 jseger Cannot use ImageMagick o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault s [2000/09/14] bin/21268 [MFC] user set no nobody is not good o [2000/09/14] kern/21270 Kernel compilation errors and dies when c o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre o [2000/09/15] i386/21297 kernel panic TRAP 18 during kern.flp inst o [2000/09/15] misc/21300 Install CD-ROMs don't give users enough r o [2000/09/15] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX o [2000/09/15] kern/21305 roger bktr driver dosn't send signals in contin o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/17] misc/21328 Should newer version of OS-BS be on CDROM o [2000/09/18] ports/21355 ports evg port fails to run - syntax error in a o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] kern/21363 cg Panic in pcm/channel.c when running RealP a [2000/09/18] bin/21375 obrien [PATCH] dhclient runs away on interface r o [2000/09/18] misc/21384 pcm driver has static in recorded audio o [2000/09/18] ports/21386 ports compile fails on -current o [2000/09/19] kern/21400 ata driver stealing IRQ15 on Compaq Proli o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews o [2000/09/20] kern/21424 Blocking issue while regenerating aliases o [2000/09/20] kern/21429 box reboots with panic: pipeinit: cannot o [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon o [2000/09/21] misc/21451 murray [PATCH] Release/Sysinstall documentation: o [2000/09/21] kern/21461 ISA PnP resource allocator problem o [2000/09/21] kern/21463 marcel Linux compatability mode should not allow o [2000/09/21] ports/21464 marcel linux_base port installs insecure glibc r a [2000/09/25] conf/21540 bp installworld panics for diskless clients o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/25] ports/21554 marcel linux_base-6.1 incorrectly enables NIS by o [2000/09/26] i386/21559 rnordier BTX loader sometime show registers o [2000/09/26] misc/21583 CVS pserver - login succeeds but checkout o [2000/09/27] conf/21593 Whither cons25, or, cons25 causing intero o [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] i386/21624 trap in gusc_attach o [2000/09/28] kern/21625 yokota kernel hangs if SC_NO_FONT_LOADING define o [2000/09/28] kern/21631 4.1.1 Release and Stable don't detect my o [2000/09/28] bin/21637 [telnet] No address associated with hostn o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/09/29] kern/21647 unable to boot 4.1-STABLE- with 4GB of RA o [2000/09/29] kern/21653 I need a AD1816 Driver o [2000/09/29] bin/21654 Re: nvi's -c flag does no do what it is d o [2000/09/29] ports/21656 ports PGP6 port based on pgp-6.5.8 o [2000/09/30] bin/21660 crontab mishandles day range o [2000/10/01] kern/21674 Fujitsu MO drives M2513A don't like the s o [2000/10/01] kern/21676 CDROM drive not recognised during install o [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc o [2000/10/02] kern/21693 cg hwptr went backwards 2112 -> 1312 o [2000/10/02] misc/21701 murray Keymap selection menu broken on initial i o [2000/10/02] docs/21708 doc kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/02] misc/21716 The site search results *suck*. o [2000/10/03] kern/21736 Source-tree broken, can't compile Kernel o [2000/10/04] ports/21756 peter errors in Squid-2.3.4's configure prevent o [2000/10/04] ports/21761 peter Re: errors in Squid-2.3.4's configure pre o [2000/10/05] kern/21771 Fix for sppp and Cronyx drivers update o [2000/10/05] ports/21774 ports upgrading Boehm's Garbage Collector port o [2000/10/05] gnu/21779 patch(1)'s bug of new file creation o [2000/10/06] ports/21784 andreas further improving the PostgreSQL port o [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/07] i386/21824 bt driver no longer attaches due to chang o [2000/10/07] kern/21827 mount causes freebsd 4.1.1 to reboot o [2000/10/08] ports/21838 ports Updated port devel/sip o [2000/10/08] ports/21839 ports Updated port x11-toolkits/py-qt o [2000/10/09] kern/21860 The fix to TCP_ISSINCR after the bugtraq o [2000/10/09] kern/21869 Compiling a a.out kernel on FreeBSD 4.0 o [2000/10/09] bin/21877 green [PATCH] DSA support for pam_ssh o [2000/10/10] kern/21898 If options NFS is not in the kernel, moun o [2000/10/10] misc/21904 dougb Fix for diskless startup bug in /etc/rc o [2000/10/11] bin/21918 Revision 1.5 provides incomplete fix for o [2000/10/12] bin/21934 jkh CVSupit install from /stand/sysinstall st o [2000/10/12] misc/21940 Modem Power-Off kills system o [2000/10/12] kern/21946 vm_fault when (accidentally) attempted to o [2000/10/13] ports/21951 ports ports/databases/db3: cannot configure o [2000/10/13] kern/21965 Running ldconfig (linux binary) from ld-1 s [2000/10/14] docs/21990 asmodai exec(3) manpage vs source inconsistency o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/15] i386/22006 quotacheck halt f [2000/10/15] ports/22010 sobomax Automatic build of windowmaker is broken o [2000/10/16] gnu/22025 markm perl does chmod in installworld o [2000/10/16] kern/22029 mckusick use of softdependencies leads to major fi o [2000/10/16] ports/22035 ports configure problem o [2000/10/16] ports/22036 ports StarOffice 5.2 CDROM install still fails o [2000/10/16] ports/22037 ports Missing shared xpm lib prevents windowmak o [2000/10/17] kern/22063 brian bpf when used with the select system call o [2000/10/18] kern/22078 Option ROM(s) must be excluded from ISA I o [2000/10/18] bin/22105 /usr/src/bin/sh - Permission denied when o [2000/10/19] misc/22111 Install 4.1.1 o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/20] ports/22148 ports Can't make chipmunk port o [2000/10/20] conf/22151 source mechanism of /etc/rc.conf* files o [2000/10/20] i386/22153 make installworld error when upgrading fr o [2000/10/20] ports/22172 ports freetds port does not work to access MS-S o [2000/10/21] ports/22194 ports Update Makefile for misc/heyu o [2000/10/21] kern/22200 4.1.1-RELEASE can't mount CDROMS (negativ o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group o [2000/10/22] kern/22225 Trying to build a CURRENT snapshot on 4.1 o [2000/10/22] ports/22227 ports boehm-gc don't work correctly in leak det o [2000/10/22] misc/22229 X configuration o [2000/10/23] ports/22239 ports Image-Magic ports make error o [2000/10/23] bin/22256 marcel [RARE] cross-compiled static bins in /usr o [2000/10/24] misc/22283 when attempting to boot from CDROM to ins o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22286 marcel siglongjmp does not properly restore the o [2000/10/25] conf/22287 binary upgrade install to 4.1.1 does not o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/26] bin/22307 green ssh dumps core if fields in password entr o [2000/10/26] ports/22311 ports upgrade of www/cadaver to the latest 1.15 o [2000/10/26] i386/22315 Cannot reboot or power-off the machine o [2000/10/26] ports/22323 ports audio/lame can't fetch its source code o [2000/10/26] ports/22328 ports new port -- print/ttf2pt1 o [2000/10/27] ports/22368 ports new port x11-fonts/koi8u-monaco; new cate o [2000/10/28] kern/22372 cg |4.1.1-STABLE|[PATCH] resume from suspend o [2000/10/29] kern/22397 n_hibma ulpt0 usage leads to kernel panic o [2000/10/29] ports/22400 will klaptopdaemon is useless o [2000/10/29] ports/22403 asami "make readmes" hangs if category director o [2000/10/29] kern/22405 sheldonh installworld still bombs on perl and othe o [2000/10/30] kern/22411 CD-RW drive works mostly, but can't fixat o [2000/10/30] ports/22416 reg mozilla segfaults on current o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor o [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/30] ports/22423 ports Update port: graphics/ImageMagick to 5.2. o [2000/10/30] ports/22425 ports new port: geminifonts -- fonts for koi8-u o [2000/10/31] i386/22441 pmap_growkernel() is not effective at ker o [2000/10/31] kern/22460 PCMCIA card using ed driver temporarily f o [2000/10/31] ports/22465 stb /var/pwcheck CONFLICT between mail/cyrus o [2000/11/01] bin/22482 The sysctl (8) command uses strtol on inp o [2000/11/01] kern/22484 System locks on reboot with a Severworks o [2000/11/01] bin/22489 mass IP aliasing via ifconfig broken o [2000/11/02] ports/22517 ports New ports o [2000/11/02] kern/22521 netgroup can't work on FreeBSD-4.1.1-STAB o [2000/11/02] kern/22532 [patch] /dev/dsp is sometimes busy when n o [2000/11/03] i386/22568 dfr ppc0 panics on DMA with drq set to 0 o [2000/11/03] misc/22588 scp hangs when using Lucent 802.11b card f [2000/11/03] kern/22594 NFS can't handle asymmetric server routin a [2000/11/03] bin/22598 gshapiro rmail recently broken wrt (at least) post o [2000/11/04] i386/22606 Panic on boot: panic string "panic ahc0: o [2000/11/05] bin/22614 pam_ssh dumps core o [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet o [2000/11/05] kern/22634 4.2-Beta (11/06) Kernel does not detect S o [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 o [2000/11/06] kern/22642 Load average stuck not changing o [2000/11/06] kern/22643 Cannot compile kernel with support for Gr o [2000/11/06] alpha/22650 mjacob SCSI CD drives not attached on boot on is o [2000/11/06] ports/22656 bmah port update to correct mail/exmh2 support o [2000/11/07] ports/22663 ports vmware2-2.0.3.799 fails in patch o [2000/11/07] kern/22664 [PATCH] mounting an audio CD causes kerne o [2000/11/07] ports/22665 ports f [2000/11/07] kern/22667 dwmalone kernel panic when attepmt to remove file o [2000/11/07] ports/22668 jseger graphics/xpm o [2000/11/07] bin/22670 pam_ssh dumps core due to bug in env_dest o [2000/11/07] ports/22671 ports new port: security/sst -- yet another SSL o [2000/11/07] kern/22680 ATA driver think Ultra ATA-100 drive is A o [2000/11/08] bin/22685 Repairing a directory hard link. o [2000/11/08] ports/22689 will .root fails to s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 asami Recommendation re. Ports Collection o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 sheldonh man can display the same man page twice o [1997/08/29] bin/4420 roberto find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/13] kern/4528 processes hang if the mount_portal proces s [1997/09/15] i386/4547 luigi asc.c and pcaudio.c should use selrecord f [1997/09/16] misc/4556 will make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c f [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 imp pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/14] kern/5048 dillon Calling shutdown(fd,1) multiple times wil o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/20] kern/5108 dillon pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 dillon kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/11] kern/5275 dillon [PATCH] Added volume (barcode) support to s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp f [1997/12/30] i386/5398 dillon silo overflows running o [1998/01/02] bin/5410 phantom pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with f [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir o [1998/02/06] kern/5672 dillon Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when f [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/22] gnu/6107 obrien gdb should support PRINTF_HAS_LONG_LONG f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to f [1998/04/20] bin/6359 routed does sent router discovry solicita a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf s [1998/05/05] bin/6521 nbm [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] kern/6544 luigi Only get one channel through sound card o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 hoek bsd.man.mk can't handle man pages with ": o [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 phk sysinstall: install from MS-DOS MO divece o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % f [1998/07/02] kern/7146 imp The PCCARD doesnt recognize cards in top s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 murray Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad f [1998/07/23] kern/7377 we have a new digiboard driver supporting a [1998/07/31] docs/7456 doc dialog(3) man page outdated f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/27] bin/7753 arp command fails silently on invalid pro o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/20] bin/7998 jkh pkg_add seems to have unneeded umask o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili o [1998/09/27] ports/8063 asami [PATCH] Add multiple CDROM support to bsd o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d f [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this s [1998/11/12] kern/8661 stb sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/13] gnu/8679 tar man page should be updated o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/27] i386/8867 murray /stand/sysinstall core dumps (signal 11) o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM f [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress f [1999/01/07] bin/9374 roberto Improved functionality for find(1) o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/16] bin/9529 ftp filname completion can't handle space o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10160 kldload of umap module panics the system o [1999/02/20] kern/10175 Bridging support incomplete for some netc f [1999/02/21] ports/10178 kris USE_SOCKS=YES option broken for security/ a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10274 will make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category o [1999/03/06] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i c [1999/03/06] ports/10454 obrien Update: emulators/spim a [1999/03/06] kern/10455 pcaudio breakage f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/14] conf/10582 marcel Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 Default sync rate in ncr SCSI driver is s o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] misc/10667 murray Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 asami List mirror sites in MASTER_SITE_BACKUP - o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement a [1999/03/27] bin/10825 dougb daily script not executed or executed twi o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048 obrien variable not initialized in fwtk-lib lead o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 will make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] conf/11243 mountd startup can lose flags o [1999/04/20] bin/11248 Shuffle o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/03] misc/11478 assar Non-functional AFS support in KerberosIV o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/12] bin/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/28] bin/11914 wosch makewhatis during installworld uses /usr/ o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/01] kern/11981 brian access to tunN devices not allowed to non o [1999/06/02] conf/11989 pppd(8) output misplaced o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] bin/12357 [PATCH] allow route to create "proxy only s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r o [1999/07/02] docs/12486 mpp listing of (56) utilities in /bin:/sbin:/ o [1999/07/02] bin/12489 /sbin/route exits with 0 on some errors o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr f [1999/07/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] kern/12723 imp Unnecessary use of magic numbers in F_[SG o [1999/07/22] kern/12764 luigi Patch for using x11amp with voxware (stol o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. f [1999/07/23] bin/12782 roberto xntpd doesn't handle interface aliases pr o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/28] kern/12855 panic:softdep_flushfiles:looping, caused o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/31] bin/12898 Added a command-line switch to netstat to o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/03] bin/12942 m4: len(`') returns `' o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/07] conf/13016 gshapiro Wrong sendmail.cf file used by mergemaste o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 will make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 dwhite new man page describing timeradd() family o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/15] kern/13164 jhb kthread_exit stops, but doesn't release p o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/18] docs/13218 mpp Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13220 mkdep: compile failed - ../../pci/if_de.c o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/22] ports/13898 ports New port: misc/dictd o [1999/09/23] conf/13918 Termcap entries for VESA modes missing a [1999/09/23] gnu/13921 sheldonh awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C o [1999/09/24] i386/13936 murray No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/10/01] ports/14077 dec Multicast not available on multicast enab o [1999/10/01] bin/14078 -stable 'make release' does not work on - f [1999/10/01] kern/14083 gibbs CAM 3.3-RELEASE fails boot w/2940UW + non o [1999/10/05] bin/14142 gshapiro sendmail: mci.c: bad pointer conversion i o [1999/10/06] docs/14158 doc md5(1) manpage should not claim the md5 a o [1999/10/06] docs/14165 nbm FDP introduction article o [1999/10/06] kern/14166 roger AVER TVPhone o [1999/10/07] bin/14175 route for ip aliasing o [1999/10/07] ports/14182 asami Patch: bsd.port.mk: add plist target o [1999/10/08] kern/14217 bde [PATCH] EXT2FS as a KLD o [1999/10/09] ports/14225 markm Patches for security/pgp5 o [1999/10/09] kern/14240 compilation error: __cmpdi2 unresolved o [1999/10/09] bin/14246 kvm_open and kvm_openfiles not works corr o [1999/10/10] bin/14255 rup and rusers could not deal with many h o [1999/10/11] misc/14258 IP_TOS and IP_TTL sockopt doesn't work on a [1999/10/11] ports/14260 jkoshy new port: www/woda - A Web Oriented Datab o [1999/10/11] misc/14263 phantom There ara no ukrainian locale in stable/c o [1999/10/11] misc/14273 Somewhat bogus entry in termcap o [1999/10/13] ports/14316 markm exmh not recognizing mh and uses too many o [1999/10/13] bin/14318 jkh sysinstall upon install has some counter- o [1999/10/14] ports/14323 markm [PATCH] ports/security/pgp5: Invoked with o [1999/10/14] bin/14330 peter [PATCH] fix clash between /usr/src/contri o [1999/10/14] bin/14335 peter Manual page for ndc gives incorrect path o [1999/10/15] kern/14346 imp Both pccard/cardinfo.h and sys/memrange.h o [1999/10/15] kern/14350 Security enhancement to ICMP o [1999/10/15] kern/14355 perhaps a guard page needed for UP-mode k o [1999/10/15] kern/14356 grog vinum and ``some processes would not die; o [1999/10/16] bin/14361 locate bogusly converts to network byte o o [1999/10/17] kern/14380 [PATCH] if_de workaround for when BIOS do o [1999/10/18] i386/14396 Floppy install of 3.2-release, 3.3-releas o [1999/10/21] bin/14448 ftp-client may not recognize failure, rep o [1999/10/23] misc/14488 kget doesn´t write the key word "enable" o [1999/10/25] misc/14511 chapss Y2K problem o [1999/10/25] bin/14533 imp pccardd improperly assigns irqs o [1999/10/26] bin/14545 quota reports in K, but header says 'bloc a [1999/10/27] kern/14561 ken ioctl (fd, CDIOCEJECT, (void*) 0) doesn't s [1999/10/27] kern/14562 ken ioctl() codes should be provided for ejec o [1999/10/27] docs/14565 doc ioctl() codes for device type `fd' (flopp o [1999/10/27] i386/14574 ISA based ESS1688 support(partially) for o [1999/10/28] kern/14584 Proposition for improved file permissions o [1999/10/29] misc/14599 pam_kerberosIV.so in the 'krb.??' package o [1999/10/29] kern/14602 struct utsname fields are allocated too s o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ a [1999/11/03] docs/14682 marko lprm(1) unaware of lp(1) Environment Vari o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/04] conf/14714 phantom Need support for imap4 and pop3 in /etc/p o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/08] ports/14783 jmz mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 dwmalone [PATCH] tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/14] i386/14891 New smbus driver lmsmb a [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough o [1999/11/16] conf/14931 rc logging facility f [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/17] kern/14968 wollman Convert resource_head and resource.r_link o [1999/11/17] ports/14970 peter conserver-7.4 port submission o [1999/11/18] conf/14973 Digi-multiport serial card? f [1999/11/18] conf/14974 jhb In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than o [1999/11/19] misc/14999 phantom ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15021 asami some port installs fail for non-root user o [1999/11/21] kern/15022 jkh Suggestion for enhancement: move isp firm o [1999/11/21] conf/15038 jkh In sysinstall, easy to not notice that se o [1999/11/23] kern/15065 fsck can't fix "huge" zero length files o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] misc/15205 billf Addition to /usr/games/random o [1999/12/01] misc/15215 Outputting in Fortune under certain circu o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 bmah proposed modifications to pkg_version o [1999/12/07] ports/15329 cwt amanda24 modification o [1999/12/07] misc/15339 fdformat should exit non-zero when user c o [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/09] bin/15390 obrien Upgrade rdist to 6.1.5 o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid a [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] bin/15470 Proposed change to comments in /etc/named o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 o [1999/12/14] misc/15480 Change-request for /usr/src/usr.sbin/cdco o [1999/12/14] kern/15489 running fstat causes a bus error o [1999/12/15] kern/15492 Patch to fixup bridging support for 2.2-S o [1999/12/15] kern/15493 Patch to enable bridging support for if_c o [1999/12/15] ports/15495 asami Add "addsum" target to bsd.port.mk o [1999/12/15] bin/15496 killall(1) limited to 16 character proces o [1999/12/15] bin/15497 NIS does not deal well with comments o [1999/12/15] bin/15510 df(1) does not lineup with large filesyst o [1999/12/15] kern/15511 Cannot scroll up after panic? o [1999/12/17] i386/15528 doscmd exec function fail. o [1999/12/17] i386/15531 doscmd DOS function 0a fail when DL is 0 o [1999/12/17] kern/15532 Reboot just to kill a print job? o [1999/12/17] misc/15546 Need to enable LBA flag for large IDE dis o [1999/12/17] i386/15547 discmd function 51 ( get ps ) fail o [1999/12/18] misc/15555 some enhancements for uudecode o [1999/12/20] bin/15593 [SECURITY] ustrcpy() buffer overflow in d s [1999/12/20] ports/15594 will kscd-1.2.7 in -STABLE ports not playing A o [1999/12/20] bin/15596 netstat -rn does'n fit on a 80 chars wide o [1999/12/21] kern/15608 acd0 / cd0 give inconsistent errors on em o [1999/12/21] conf/15612 jkh Re-Scan devices in 3.4-Release options me o [1999/12/21] i386/15619 standard pppd doesn't authenticate users o [1999/12/22] kern/15636 dillon reminder to self for MAP_ VM defines o [1999/12/23] misc/15658 edquota misinterprets usernames as uid ra o [1999/12/24] bin/15663 yokota none o [1999/12/28] bin/15739 repquota report format fix for better par o [1999/12/28] kern/15747 dcs loader's builtin "more" command won't res o [1999/12/28] conf/15748 jkh sysinstall - upgrade a [2000/01/01] docs/15821 asmodai Wrong device names in manpages for lpt(4) o [2000/01/01] kern/15827 Power-Off causes Trap 9 in kernel o [2000/01/01] bin/15830 imp PATCH: rdump over ssh o [2000/01/02] kern/15838 Conversion tables in msdosfs_conv.c are b o [2000/01/02] bin/15852 asmodai predefined \*(DT string has Y2K bug o [2000/01/02] bin/15853 tar --newer-mtime flag has Y2K bug o [2000/01/03] bin/15855 comsat(8) failes to open system mail box o [2000/01/03] kern/15860 patch to make default kern.maxfilesperpro o [2000/01/03] bin/15861 dan ftpd did not use sendfile(2) when sending o [2000/01/03] misc/15871 small CVS directories copied to PicoBSD filesys o [2000/01/03] misc/15874 small PicoBSD can only update files from within o [2000/01/03] misc/15876 small PicoBSD message of the day problems o [2000/01/05] misc/15908 patch to fix argument mismatch in getnano s [2000/01/06] docs/15959 phantom misplaced lines in psignal.9 man page o [2000/01/08] kern/15983 n_hibma C++ keywords in kernel header files o [2000/01/08] ports/15992 joe [PATCH] Add a default for $SUP in the /us o [2000/01/08] ports/15993 asami [PATCH]No line-feed in warnings from ``ma o [2000/01/09] misc/16003 sysinstall crashes if it gets more than o o [2000/01/09] bin/16005 brian add new option to date(1) o [2000/01/09] bin/16007 joe cdcontrol(1) defaulting do /dev/cdrom ins o [2000/01/09] misc/16009 Invoking /stand/sysinstall from kde termi o [2000/01/09] kern/16016 cam/scsi/scsi_da.c: Fujitsu M2952 doesn't o [2000/01/10] kern/16021 To support SMP on NEC PC98, call mp_probe o [2000/01/10] kern/16023 Add an idletime counter for sppp, just li s [2000/01/10] bin/16048 asmodai "file" command cannot recognize LaTeX2e f o [2000/01/10] kern/16049 Connor Drive fails cache sync o [2000/01/11] conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.con o [2000/01/14] bin/16119 ctm_rmail does not honor umask s [2000/01/14] bin/16124 gad [MFC] [PATCH] Enhancement for 'lpr -r' o [2000/01/15] ports/16139 billf Ntop port fails to find lsof o [2000/01/18] kern/16169 The U.S. Robotics 56K Voice Int modem is o [2000/01/18] misc/16189 Advansys ASB-3940U2W SCSI Card does not w o [2000/01/18] kern/16195 16-bit uid/gid struct in sys/ipc.h o [2000/01/19] bin/16206 PATCH: vmstat column alignment, %ll not s o [2000/01/19] misc/16208 ps/2 mouse problem o [2000/01/19] misc/16212 in /stand/sysinstall -- cannot exit menu o [2000/01/20] ports/16220 obrien -frepo is broken in gcc-devel and egcs po o [2000/01/21] ports/16252 asami bsd.port.mk: Add bzip2 support for distri o [2000/01/21] bin/16275 steve approve send-pr(1) (attach files, use env o [2000/01/22] kern/16292 performance problem of divert socket o [2000/01/23] bin/16316 Enhancement: allow .fakeid to be a named o [2000/01/23] bin/16320 fstat -f confuses some partitions o [2000/01/24] kern/16339 vm/vm_page.h PQ_L2_SIZE options too limit o [2000/01/25] ports/16347 sobomax Inconsistencies between Java ports o [2000/01/25] kern/16360 kernel timestamping of ICMP echo requests o [2000/01/26] bin/16364 [PATCH] Add msdosfs and cd9660 support to f [2000/01/26] ports/16374 ache Ports fix: news/tin o [2000/01/27] i386/16411 DUMP freezes system if uucico or samba wr o [2000/01/28] bin/16422 newfs always make root's / directory o [2000/01/30] bin/16480 locked accounts and adduser o [2000/02/06] conf/16536 size of /var/spool/uucp/Log, a UUCP logfi o [2000/02/06] kern/16551 cosmetic cleanup in sys/dev/ppbus/pcfcloc o [2000/02/07] ports/16570 asami ports toplevel README.html has bad link t o [2000/02/08] conf/16584 jkh Hostname field too small during install ( o [2000/02/09] bin/16619 trimdomain does not handle peer domains o [2000/02/09] bin/16625 Incorrect information in routed(8) error o [2000/02/10] ports/16640 jfitz rwhois port install tries to copy wrong l o [2000/02/10] bin/16649 /bin/lastcomm: output contains extraneous f [2000/02/11] ports/16654 mharo Some master sites have discontinued hosti o [2000/02/11] bin/16657 /bin/hostname: New feature to return subc o [2000/02/13] bin/16705 ftpd doesn't support -h option o [2000/02/14] kern/16709 PATCH: make poll work for -STABLE's Audio o [2000/02/14] kern/16713 grog Vinum: some processes would not die; ps a o [2000/02/14] misc/16719 /stand/sysinstall does not redraw the scr o [2000/02/14] i386/16722 squid (a 3.x binary) won't run under 4.0- o [2000/02/15] bin/16726 rpc.rstatd from inetd sig11's o [2000/02/16] kern/16745 Kernel Makefile doesn't sanitise PATH [PA o [2000/02/16] kern/16765 Add support for mark/space parity o [2000/02/18] kern/16815 dillon Cannot "rm -rf" for not-existed file on r o [2000/02/19] misc/16830 markm PAM-related error messages on -current o [2000/02/20] misc/16839 dan MFC Matthew D. Fuller's patch to deal wit o [2000/02/20] misc/16840 dan MFC: Matthew D. Fuller's teach pkg_info t o [2000/02/20] docs/16843 doc Knob for release/Makefile to prevent dele o [2000/02/21] ports/16872 max Update port: japanese/pine o [2000/02/21] bin/16880 davidn [PATCH] pw(8) hardcodes directory creatio o [2000/02/22] bin/16924 tmpfile(3) ignores TMPDIR and always uses o [2000/02/22] bin/16926 kris [PATCH] banner doesn't allocate space fo o [2000/02/22] kern/16928 dynamic sysctl enhancement o [2000/02/22] bin/16929 [PATCH] prevent possible race condition i o [2000/02/23] misc/16938 FTP does not fully parse ftp:// URLs o [2000/02/24] misc/16969 yokota /kernel: psmintr: out of sync (0000 != 00 o [2000/02/24] bin/16971 Exiting from /usr/sbin/login does not res o [2000/02/26] kern/17003 dscheck() overzealously protects labels o o [2000/02/26] kern/17007 This is a code for implementing ethernet o [2000/02/27] conf/17022 rwatson newsyslog.conf not in sync with syslog.co o [2000/02/27] alpha/17032 alpha strtod(3) floating exception o [2000/02/28] misc/17045 Cannot install on Siemens Primergy 870 (d o [2000/02/28] kern/17058 mjacob SCSI tape driver can't drive devs that ca o [2000/02/29] bin/17077 yokota write() error o [2000/03/01] docs/17104 phantom gethostbyname(3) contains a reference to o [2000/03/01] kern/17109 darrenr fastroute crashes for lo0 udp o [2000/03/02] misc/17132 bugs in xdr functions o [2000/03/02] ports/17139 billf PLIST correction for Apache13-fp s [2000/03/04] misc/17178 gad [MFC] -d option of lpd didnt work o [2000/03/04] misc/17185 main ncurses headerfile is installed as c f [2000/03/04] i386/17198 3.4 doesn't boot from CD on dell 3500 o [2000/03/04] gnu/17202 uucp grade patch and policy o [2000/03/05] conf/17207 disktab support for Fuji-MO o [2000/03/05] gnu/17214 obrien gdb doesn't honor auto-solib-add o [2000/03/06] kern/17222 Avance Logic ALS/100 sound card doesn't r o [2000/03/06] kern/17224 4.0-20000214-CURRENT: pcm/csa sound - sha o [2000/03/06] bin/17226 markm ftpd can't use PAM a [2000/03/06] ports/17241 mharo Update: japanese/tkdesk o [2000/03/07] ports/17255 pst Update the GNATS port to 3.113 o [2000/03/07] ports/17259 reg Update port www/mozilla o [2000/03/08] misc/17270 FreeBSD should support nsswitch.conf, or o [2000/03/08] misc/17272 deleting a file that a program has open c o [2000/03/08] misc/17275 asami make release fails when making readmes fo o [2000/03/09] bin/17289 [PATCH] wrong permissions on /var/run/pri o [2000/03/09] ports/17293 hosokawa samba port installs man-pages twice, fail o [2000/03/09] kern/17297 Panic when mounting a CDRom o [2000/03/13] kern/17358 PCI ids for Aureal 8810, 8820 and 8830 au o [2000/03/13] bin/17363 crontab(1) leaves files in /var/cron/tabs o [2000/03/13] bin/17368 billf Bad error messaging from mountd(8) o [2000/03/14] misc/17377 "Checking for rejected mail hosts:" gives o [2000/03/14] kern/17385 Support for IIT's "XC87SLC-33" numeric pr o [2000/03/15] bin/17389 /bin/cp failed on some synthetic vfs o [2000/03/15] bin/17395 This is a replacement for the perl versio o [2000/03/15] misc/17399 FTPing into machine slows it down o [2000/03/16] bin/17405 one more fstat patch o [2000/03/16] alpha/17411 alpha No link/activity lights Alpha ethernet ca f [2000/03/16] ports/17414 mharo upgrade and fix for the postilion port o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in o [2000/03/16] ports/17427 cwt a big enhancement to the flexability of t o [2000/03/17] bin/17430 jkh Missing Czech keyboard in /stand/sysinsta o [2000/03/17] kern/17438 cg newpcm volume too low on Soundblaster Pro o [2000/03/17] kern/17441 4.0-STABLE: Intel 82801AA SMBus Controlle o [2000/03/18] ports/17465 jmacd Update port: lang/STk to 4.0.1 o [2000/03/18] ports/17471 rse presence of devel/pth-devel port breaks w o [2000/03/18] ports/17479 asami bsd.port.mk: PARALLEL_BUILD o [2000/03/18] bin/17480 m4 changecom doesn't work as documented o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl o [2000/03/19] ports/17490 markm ports fail for some gnu programs as the g o [2000/03/19] kern/17493 Updates to use FreeBSD as a firewall and o [2000/03/19] bin/17498 killall(1) is a slow perl script that's d o [2000/03/20] i386/17505 Problems with with SMP on Compaq proliant f [2000/03/20] docs/17521 doc Proposed FAQ on assembly programming o [2000/03/21] bin/17532 "host" only prints A records by default o [2000/03/21] kern/17539 kernel panic when asking help in visual u o [2000/03/22] bin/17546 murray Sysinstall does not let you configure NIS f [2000/03/22] bin/17555 green fstat(1) doesn't show memory-mapped files o [2000/03/24] kern/17581 devices failing probing do so silently o [2000/03/25] docs/17598 doc installworld over NFS documentation no lo o [2000/03/25] ports/17602 jmz Port fix x11/XFree86-4.0 (make deinstall o [2000/03/26] bin/17611 f77 man page needs updated o [2000/03/27] bin/17619 pax cannot read all tar files created by o [2000/03/27] bin/17623 date(1) -v doesn't handle time changes (D o [2000/03/27] i386/17628 mdodd 3c509b hangs on running ifconfig o [2000/03/28] bin/17640 lseek();read() -> pread() in dump and fsc o [2000/03/29] bin/17679 wpaul wicontrol should take multiple args on co o [2000/03/30] kern/17688 es_callback() in /sys/pci/es1370.c does n o [2000/03/30] bin/17694 wcstombs(), mbstowcs() not complying with o [2000/03/30] conf/17699 Support for dutch keyboards in the consol o [2000/03/31] bin/17720 presence of old /dev entries causes sysin o [2000/04/01] kern/17728 probe Macronix 98715/98715A 10/100BaseTX f [2000/04/01] misc/17737 dwhite Major repair of PicoBSD o [2000/04/01] bin/17739 Traceroute will not compile without IPSEC o [2000/04/02] kern/17751 wpaul rl driver loaded as module when it alread f [2000/04/02] kern/17758 green Make sl driver dynamicallly expandable. o [2000/04/03] bin/17772 TFTP can not handle big files (> 32MBytes o [2000/04/03] kern/17774 doc stray irq7 o [2000/04/03] kern/17775 4.0-STABLE: Adaptec-155-ATM at en0 causi o [2000/04/04] kern/17796 cg pcm drivers failes to load for Neomagic o o [2000/04/04] ports/17799 alex new port: lang/jgnat o [2000/04/04] ports/17801 jake new port: devel/binutils11 o [2000/04/04] ports/17802 jake port update: devel/gcc11 o [2000/04/04] ports/17803 jake new port: devel/gdb11 o [2000/04/05] gnu/17812 gprof gives error: o [2000/04/05] kern/17819 adrian Build ports on nfs & union mount panics k f [2000/04/06] bin/17824 sheldonh [PATCH] /usr/bin/column has arithmetic ov o [2000/04/06] bin/17830 /usr/bin/login called from command line d o [2000/04/07] misc/17848 Patches to remove support for CSRG libm f [2000/04/07] docs/17855 alex PPP Primer is out-of-date o [2000/04/07] misc/17857 During a sysinstall kernel sources say th o [2000/04/08] bin/17864 PATCH: sys/resource.h needs sys/time.h fo o [2000/04/09] misc/17889 certain type of DNS queries seem to get d o [2000/04/10] ports/17897 chuckr transfig does not compile with XFree86-4. o [2000/04/10] i386/17906 le ethernet device doesn't work in 4.0 o [2000/04/10] kern/17907 cg Audio record levels are too low o [2000/04/10] docs/17916 alex [PATCH] rewrite of cutting-edge section o o [2000/04/10] ports/17921 green licq in the ports collection is missing a a [2000/04/11] bin/17939 sheldonh routed calls ntohs twice on the same fiel o [2000/04/12] ports/17952 torstenb [PATCH] tcp_wrappers port to give better o [2000/04/12] misc/17957 installer navigation is confusing o [2000/04/13] misc/17983 Minikernel build instructions do not work o [2000/04/13] conf/17993 improving on the default /etc/amd.map o [2000/04/13] bin/17997 nvi doesn't set variables on startup (via o [2000/04/14] kern/18001 PCM - Yamaha OPL-SAx doesn't have treble/ o [2000/04/14] misc/18014 Machine doesn't boot without keyboard att o [2000/04/17] ports/18057 jmz make install for XFree86-4 fails on alpha o [2000/04/18] bin/18080 davidn [PATCH] pw documentation updated to refle o [2000/04/18] ports/18083 rse Gratuitous Apache package inconsistencies o [2000/04/19] misc/18097 What is this: LIBRATION not specified - u o [2000/04/19] bin/18100 update to src/usr.bin/from/from.c for mul o [2000/04/20] misc/18109 if pw_shell is empty(/bin/sh is assumed), s [2000/04/20] bin/18114 ken msps from iostat is wrong o [2000/04/21] misc/18131 MAX_IFS in pppd/sys-bsd.c too small for m a [2000/04/22] conf/18152 /etc/exports should suggest how to get mo o [2000/04/22] i386/18154 [PATCH] Add cpu class and features flags o [2000/04/22] bin/18157 pnpinfo only prints first io-start for ev o [2000/04/22] conf/18164 roberto /var/log/ntpstats fill with stat files by o [2000/04/23] misc/18175 strtok(3) example doesn't work. o [2000/04/23] ports/18184 ache GNU Patch 2.5.4 Port o [2000/04/24] bin/18191 pac core dumped without set /etc/printcap o [2000/04/24] bin/18193 Bogus diagnostics by nslookup(1) o [2000/04/26] kern/18232 SMP + APM configerd 4.0 kernel did panic o [2000/04/26] docs/18243 alex wrong description of -p option in sh(1) m o [2000/04/27] misc/18255 makewhatis weekly job doesn't look at /us o [2000/04/27] ports/18256 sada www/netscape4* lacks Fortify on alpha o [2000/04/27] ports/18259 obrien ElectricFence installation breaks if the o [2000/04/28] kern/18271 simplelock: klds not portable across UP a o [2000/04/28] bin/18275 proposed TMPDIR setting and /usr/bin/mkin o [2000/04/28] kern/18289 CPU Time exceeded delivered multiple time o [2000/04/29] ports/18291 asami make makesum fetches new sources, make fe o [2000/04/29] kern/18293 lack of versapad mouse wheel emulation o [2000/04/29] kern/18295 Audio is gone after hibernation o [2000/04/30] bin/18319 "dump" fails with "cannot reopen disk: in o [2000/05/01] bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o [2000/05/01] bin/18329 ben futimes() and lutimes() missing from ' cannot be used in "via" o [2000/05/29] ports/18896 jseger Tcl "info hostname" command returns chop- o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se a [2000/05/30] ports/18911 sada New port - plptools o [2000/05/31] kern/18928 options ROOTDENAME=xxx on kernel config f o [2000/06/01] bin/18946 jhb Add support for enabling USB daemon from o [2000/06/01] ports/18960 asami Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 green sshd does not print before motd o [2000/06/02] bin/18967 ypserv not linked with tcp wrappers o [2000/06/02] misc/18969 sound card not recognized by probe o [2000/06/03] misc/18987 Problems with Comtrol RocketPort o [2000/06/03] bin/18992 log packets blocked by filter rules o [2000/06/03] misc/18995 assar Kerberos5 INCLUDES needed for make world o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed o [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/05] docs/19010 doc Bad144 obsoletion by 4.0 is undocumented; o [2000/06/05] i386/19012 No volume run out for /var and lead my Fr o [2000/06/05] misc/19037 Keyboard not detected on new install o [2000/06/05] ports/19038 ports The qpopper port accepts empty X-UIDL: he o [2000/06/05] bin/19044 billf Some games compare initscr() to ERR. o [2000/06/06] bin/19056 yacc in 3.4 and 4.0 reports "maximum tabl o [2000/06/06] bin/19057 offer of patch to uname that produces pre f [2000/06/06] ports/19061 kuriyama ports/textproc/lotusxsl the source zip pa f [2000/06/06] kern/19063 rnordier VGA keyboard sometimes fails to work in b o [2000/06/06] ports/19064 obrien Xosview broken on AXP Alpha o [2000/06/06] bin/19071 fmt not folding very long lines a [2000/06/06] ports/19082 lioux Can't build editors/aXe-6.1.2 o [2000/06/07] misc/19088 STL from SGI for FreeBSD 3.4 o [2000/06/07] ports/19112 asami files with names something,v in patches d o [2000/06/08] bin/19118 vmstat¤Ç avm¤Èfre¤ÎÃͤ¬Àܤ¹¤ë¡£ o [2000/06/08] ports/19119 jmz un-forbid x11/XFree86-4 and unbreak its x o [2000/06/08] misc/19124 ps(1) to support SysV-style options? o [2000/06/08] kern/19127 kernel panic on mount on burncd'd device o [2000/06/08] misc/19129 AMI Raid Express 200 card extremely slow o [2000/06/08] kern/19132 ATM HARP support apparently does not supp o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/09] kern/19158 U.S.Robotics 56K FAX INT not recognize co f [2000/06/10] conf/19178 ume add reject routes and comments in /etc/rc o [2000/06/10] bin/19183 more(1) doesn't handle redraw correctly o [2000/06/10] ports/19193 jfieber Update textproc/jade to C{XX,}FLAGS safe o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel o [2000/06/12] ports/19224 andreas Problem installing p5-Net-SSLeay port o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port f [2000/06/13] conf/19236 sanpei not-existing PCMCI cards in pccard.conf.s o [2000/06/13] bin/19239 login allows users to login remotely with o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/13] ports/19253 dirk mod_php4 has pkg dependency when not usin o [2000/06/14] ports/19270 asami Ports build mechanism doesn't check wheth o [2000/06/15] ports/19325 tom ports/mail/ezmlm-idx: mysql & pgsql suppo o [2000/06/15] gnu/19327 obrien Fix to build 'a.out' binary. o [2000/06/16] ports/19333 cwt patch to make amanda24 more userfriendly o [2000/06/16] bin/19337 obrien c89(1) not POSIX compliant (-l lib) and m o [2000/06/17] bin/19355 fstat gives signal 10 (SIGBUS) when outpu o [2000/06/18] i386/19365 gj lnc1 is not worked with Am79C973 o [2000/06/18] misc/19367 markm /etc/defaults/make.conf lists wrong value o [2000/06/18] bin/19369 Inadequate error reporting in "mount" com o [2000/06/19] misc/19391 marcel Evilness with Linux Terminus, causes X to o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/20] bin/19404 /usr/bin/error should be included in the o [2000/06/20] misc/19406 setenv() allocates memory which is not fr o [2000/06/20] i386/19410 spontaneous reboot when esd runs on a -ST o [2000/06/21] conf/19413 Too few MCAM SCSI devices in /dev o [2000/06/21] bin/19422 users can overflow argv to make ps segfau o [2000/06/22] kern/19436 when using vlanX interface arp ageing wor o [2000/06/22] conf/19442 can't install on diverse harddisks. o [2000/06/22] ports/19448 markm filename input broken o [2000/06/22] ports/19456 chuckr the sp port is hardwired to install it's o [2000/06/22] ports/19457 vanilla The gimp port has /usr/local/bin hardwire o [2000/06/23] misc/19462 using HARP atm driver on FreeBSD3.4 freez o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/23] docs/19481 doc Serial Communications chapter in Handbook o [2000/06/24] ports/19486 stb net/netatalk fix PLIST o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/25] kern/19497 Adaptec AHA-1530P PNP scsi card is not re o [2000/06/25] ports/19498 kris ssh (1) instal fails o [2000/06/26] bin/19514 patch to prevent tail'ing directories o [2000/06/26] ports/19523 billf Update port: graphics/gd o [2000/06/26] bin/19532 cdcontrol does not handle EOF on stdin pr o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup o [2000/06/26] bin/19536 patch to prevent head'ing directories o [2000/06/27] kern/19541 Want to marge ds1 sound card driver from o [2000/06/27] kern/19546 No CD audio o [2000/06/27] kern/19553 "panic: zone: entry not free" in namei() o [2000/06/28] bin/19558 amd doesn't know whether NFS feature is a o [2000/06/28] misc/19564 PNP-Id for ESS1681 o [2000/06/28] ports/19571 tg python/TKinter busy waits f [2000/06/28] conf/19573 Dot Files for Optional Shells o [2000/06/29] ports/19585 obrien bounce port misconfiguration o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo o [2000/06/29] bin/19592 imp pccard_ether does not honor dhcp_{program f [2000/06/30] ports/19594 trevor update port: qrash o [2000/06/30] bin/19598 traceroutes default of 30 Hops is too low o [2000/07/01] kern/19624 make {DFL,MAX}SSIZ kernel options o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] ports/19641 jfitz Newer version of swatch available o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/02] ports/19650 asami python package causes segmentation fault o [2000/07/03] misc/19670 jkh Incorrect duplicate in fortunes2 o [2000/07/03] bin/19683 green mount displays incorrect mount point on f o [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/03] kern/19688 jlemon Some boundry checking KASSERTS in network o [2000/07/05] kern/19706 Framing error on PC/NET 32 also used in o o [2000/07/05] ports/19713 max Update port lang/swi-pl to CFLAGS safeten o [2000/07/05] bin/19719 imp pccard_ether lacks the start_if hooks as o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/05] misc/19725 4.0-STABLE: sys/boot/ficl build fails if o [2000/07/06] gnu/19733 obrien GDB 4.18 is not GDB 4.18 o [2000/07/07] bin/19755 nologin not configurable o [2000/07/07] kern/19756 sheldonh Inability to use linux extended partition o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/07] ports/19780 stb SETI@home port startup script fails o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. o [2000/07/09] misc/19805 not installable on old-fashioned dx50 o [2000/07/09] ports/19806 swallace error message w/xcdplayer: ioctl (cdromr f [2000/07/09] kern/19807 incorrect dates o [2000/07/09] ports/19812 mharo [PATCH] LDAP support for proftpd o [2000/07/10] docs/19818 doc /usr/share/man/man8/sysinstall.8 missing o [2000/07/10] ports/19823 abe gnucache build depends on unimplemented s o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 murray Run Fit it floppy from serial port o [2000/07/11] conf/19849 MAKEDEV still defaults to da0X instead of o [2000/07/11] kern/19863 markm Non-blocking IO not supported on /dev/ran o [2000/07/12] ports/19868 asami modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 select on named pipes always returns 'ava o [2000/07/13] kern/19887 mjacob Boot hang while scanning SCSI bus o [2000/07/13] i386/19890 davidn Stallion serial driver support missing [p o [2000/07/13] bin/19897 gshapiro Allow building more then 1 SENDMAIL_CF o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver f [2000/07/16] misc/19971 asmodai bug in /usr/include/sys/socket.h o [2000/07/16] i386/19972 Add of pckg (several pkgs) aborted, error o [2000/07/17] ports/19977 rse mod_php3 and mod_php4 ports doesn't recog o [2000/07/17] docs/19981 doc Indonesian translations o [2000/07/18] gnu/20004 obrien FBSD4 gcc __attribute__(constructor) not f [2000/07/18] misc/20007 mharo du -hcs * gives different wrong results d o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/19] alpha/20047 alpha FreeBSD does not yet support system type o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/20] bin/20074 darrenr enable STATETOP for ipfstat (ipfilter) o [2000/07/20] bin/20078 obrien No problem o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] ports/20145 dburr improving the devel/SN port o [2000/07/24] bin/20154 quiting more/less on the console early le o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] kern/20161 cg Integrate VIA VT82C686 AC'97 audio driver o [2000/07/24] bin/20165 markm PERL_THREADED=true fails; "yes" works; ma o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat o [2000/07/25] ports/20171 andreas postgresql7 user message contains $PREFIX o [2000/07/25] ports/20179 nbm Follow up on ports/20168 o [2000/07/25] ports/20186 nbm New port: fdp-tools o [2000/07/25] bin/20188 brian tcpdump -d enables promisc mode on tun0 a o [2000/07/26] ports/20196 jfitz update: x11-toolkits/p5-Tk to nonbeta f [2000/07/26] kern/20198 luigi log setup of dynamic rules for ipfw o [2000/07/26] conf/20202 darrenr ipfilter hooks in rc.network o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/27] kern/20231 non existing kernel files found in conf/f o [2000/07/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] kern/20255 cg [PATCH] resume from suspend breaks pcm o [2000/07/28] ports/20267 chuckr Update port: print/transfig to 3.2.3c o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/28] kern/20278 cg YMF724 initialization fails on my environ s [2000/07/29] docs/20294 darrenr ipf(5) defines icmp rule twice f [2000/07/29] bin/20295 fdisk -s give incorrect disk size o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/30] ports/20301 billf New port: irc/ircd-hybrid6 o [2000/07/31] bin/20311 markm src/release/Makefile: broken CHECKSUM.MD5 o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 sheldonh ftp login fails on unix password when s/k o [2000/08/01] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/01] bin/20345 brian screensaver wont come on if pppctl is run o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/02] ports/20356 mharo Update port: ftp/proftpd o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide o [2000/08/02] ports/20364 dburr audio/ripit-atapi can use 'dagrab' instea o [2000/08/02] bin/20371 obrien dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s o [2000/08/03] kern/20393 dillon processes get stuck in vmwait instead of o [2000/08/04] docs/20400 doc Building a kernel with debugging info sec o [2000/08/04] bin/20402 ache 4.1R's ls conflicts with Emacs' dired mod o [2000/08/04] misc/20408 Distribution CDs will not boot on IBM Thi o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 asmodai Can't make only cd0 under 4.1-STABLE o [2000/08/06] kern/20448 luigi expired dynamic rules shown in "ipfw get" o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u o [2000/08/07] kern/20473 itojun socket(AF_INET, SOCK_RAW, 4) no longer wo o [2000/08/07] misc/20474 jkh Spelling fixes to fortune data file o [2000/08/07] misc/20475 mjacob SES/SAF-TE giving bogus temps on JMR ELEC o [2000/08/08] conf/20479 updates for rc.conf.5 manpage o [2000/08/08] i386/20485 AdvanSys ISA probe problems in 4.1-R GENE o [2000/08/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/09] conf/20498 brian All FreeBSD systems trigger massive late- o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 extra flag to dump to offline autoloaders o [2000/08/09] misc/20502 assar kerberos5 w/o kerberos4 attempts to build o [2000/08/09] misc/20504 assar [PATCH] ssh (openssh) cannot connect to s o [2000/08/10] ports/20520 will New port: lang/mercury o [2000/08/10] bin/20527 ume redundant binaries for similar IPv4 and I o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. s [2000/08/10] kern/20529 billf gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin o [2000/08/12] ports/20561 dburr [PATCH] x11-fonts/sharefonts typo fix o [2000/08/12] bin/20569 sos libvgl tries to free global array o [2000/08/13] ports/20577 thepish update x11-toolkits/xmhtml, please close f [2000/08/13] ports/20582 will New port: tuxracer (3d penguin racing gam o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] bin/20600 net getpeereid obtains credentials from conne o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/14] kern/20611 VLAN parent device does not count VLAN ou o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/15] ports/20627 jseger tcl83 build is broken o [2000/08/16] bin/20643 dwmalone /usr/bin/kzip is obsolete; remove it? o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/16] ports/20662 ports New port of viewkit f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po o [2000/08/16] kern/20670 imp No PC-CARD Slots; Device Not Configured o [2000/08/17] ports/20678 asami make SORTED_MASTER_SITES_CMD variable ove o [2000/08/17] bin/20681 des [PATCH] show service names in netstat and o [2000/08/18] bin/20696 Pkg_add does not make use of HTTP_PROXY / o [2000/08/18] conf/20698 cg pcm device o [2000/08/19] ports/20723 murray [PATCH] Update port: eterm 0.9 o [2000/08/20] ports/20730 peter Update Squid 2.3-STABLE4 with latest vend o [2000/08/20] i386/20731 cg syslog reports pcm0: hwptr went backwards o [2000/08/20] docs/20738 doc correction and modification to clocks(7) o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/21] ports/20749 stb [PATCH] ports/mail/cyrus update o [2000/08/22] conf/20774 sheldonh 'NFS access cache time=2' is not a daemon o [2000/08/22] kern/20781 ESS Solo is not listed in supported sound o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/23] docs/20794 doc Request 2 good documents under people.fre o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 davidn top's problem o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/23] misc/20808 ps netstat -m doesn't use -N or -M arguments o [2000/08/24] ports/20821 jmz [PATCH] XDM PAM support should not requir o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] bin/20827 billf pkg_add -r only fetchs one-level deep dep o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri o [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/25] ports/20849 dec fix port: net/gated o [2000/08/25] ports/20851 torstenb Update port: audio/mpegaudio s [2000/08/26] bin/20858 sos libvgl does not handle fonts wider than 8 o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] ports/20888 stb [PATCH] Miscellaneous fixes for the cyrus o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/27] misc/20891 cg Suspend/Resume does not work for the YMF7 s [2000/08/28] misc/20906 darrenr [PATCH] typo in ipmon.8 o [2000/08/28] bin/20908 murray /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/29] misc/20921 yokota `Splash' screen fails to display splash.b f [2000/08/29] kern/20927 ume dmesg output: looutput: mbuf allocation f o [2000/08/30] ports/20941 ports Port Update: *-rtems-gdb o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/08/30] bin/20949 marcel openssl build references non-buildtool, w o [2000/08/30] docs/20950 kris [PATCH] openssl.1 has bogus section title o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql o [2000/08/31] ports/20970 andreas Remove port: print/ghostscript5 o [2000/08/31] ports/20975 ports update math/grace f [2000/09/01] kern/20992 kern/tty_subr.c, b_to_q to a clist with n o [2000/09/02] bin/20993 many ftpd commands not limited to logins f [2000/09/02] ports/20995 sheldonh freeciv-civ gtk make problem. o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo o [2000/09/02] ports/20999 jmz [PATCH] fix messages in mtools port a [2000/09/02] kern/21000 sheldonh 4.1-STABLE doesn't have card ID f [2000/09/02] ports/21003 ports New Port, modification of tcopy s [2000/09/02] bin/21007 gad [MFC] Improve/fix error messages in lpr's o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/04] bin/21024 pow() ERANGE bug o [2000/09/04] ports/21038 jseger CFengine doesn't install info files o [2000/09/04] kern/21051 Updating 4.1-RELEASE to -current fails be o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] conf/21066 Proposed change in rc scripts o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21074 davidn chkgrp vs group(5) inconsistency f [2000/09/06] bin/21075 sheldonh top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/06] ports/21081 andreas Update port: devel/SpecTcl o [2000/09/06] bin/21086 joe Annoying little bug using ls -G with f [2000/09/07] ports/21094 will New port: PHP 3.0.16 - standalone interpr o [2000/09/08] ports/21120 grog Update port: x11-servers/x2x o [2000/09/08] ports/21124 markm Updete port: x11-wm/gwm to 1.8d o [2000/09/08] gnu/21128 a proposed patch for uucp package o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] bin/21144 des [PATCH] fetch(1): don't bonk if ftp SIZE o [2000/09/09] kern/21154 Change the name of *_saver.ko to saver_*. o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm o [2000/09/10] ports/21160 jseger A patch for editors/emacs20 XIM support s [2000/09/10] bin/21178 ken voltag selector, and unload support for c f [2000/09/10] ports/21179 will New port: math/gul-vdog-qt o [2000/09/11] ports/21211 rse the startup file installed by apache-mods o [2000/09/12] ports/21218 cwt amanda24 should config with --with-buffer o [2000/09/12] kern/21222 wrong behavior of concurrent mmap()s on N o [2000/09/12] kern/21229 Proper value for vfs.nfs.access_cache_tim o [2000/09/12] misc/21230 jhb The URL for splash window is gone o [2000/09/12] bin/21231 roberto the ntp HTML docs don't have the images f [2000/09/12] kern/21240 mbufs allocated to data is huge number in o [2000/09/12] kern/21242 Koutech PCI dual port serial card patch o [2000/09/12] ports/21244 will Update port: emulators/xmame f [2000/09/12] bin/21246 nvi's -c flag does no do what it is docum o [2000/09/13] misc/21255 phk /sbin/md5 suggestion o [2000/09/14] bin/21261 burncd blank fails o [2000/09/14] misc/21265 Not a bug, say: feature? o [2000/09/14] misc/21273 PLIP Configuration in sysinstall is broke o [2000/09/15] misc/21287 "make all" for a jail build fails at lib/ o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and o [2000/09/15] ports/21296 torstenb [PATCH] INN port is outdated o [2000/09/15] misc/21298 tftpd problem "Socket operation on non-so o [2000/09/16] kern/21308 Sound Blaster 16 (using pcm) and new DEVF o [2000/09/16] misc/21310 Telnetd locks up when trying to connect v o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/16] kern/21317 [PATCH] LINT and NOTES give false default o [2000/09/17] conf/21339 green ssh-keygen: not found o [2000/09/18] ports/21344 fenner ports/benchmark/netperf missing checksum f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21351 jhb ports/emulators/bfe sourcetarball no long o [2000/09/18] misc/21354 FreeBSD4.1 + SMP + vinum = crashes o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s o [2000/09/18] ports/21366 sobomax Update port: comms/mserver o [2000/09/18] ports/21368 flathill Update port: games/xosmulti s [2000/09/18] ports/21371 bp Update port: net/mars_nwe to 0.99.20 o [2000/09/18] ports/21372 nectar Update port: sysutils/doconfig o [2000/09/18] misc/21385 yokota About daemon_saver o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/18] kern/21391 WARNING messages occur when bpf is used w o [2000/09/19] bin/21394 [PATCH] MAKEDEV creates rocketport specia o [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f o [2000/09/19] kern/21402 marcel Linuxulator: getpgid(0) fails o [2000/09/19] kern/21405 Default module patch mismatch between ker o [2000/09/19] kern/21409 The ID for the VIA KT133 chipset is not i o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] bin/21436 pkg_install will not compile without erro o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre o [2000/09/21] i386/21452 cg Add speaker volume adjusting support for f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/21] ports/21460 jseger Patch net/trafshow: Allow showing ipv6 p o [2000/09/22] ports/21473 dburr update devel/SN to 4.5.2, not from mainta o [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/22] conf/21489 /etc/pccard_ether feature request o [2000/09/22] ports/21491 billf Too old ethreal version, please update to o [2000/09/22] misc/21494 ftpd doesn't count o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21507 lioux New port emulators/sope (Playstation(tm) o [2000/09/23] misc/21512 cdrdao fails to build with SCGLIB o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] kern/21524 Crashs while using talk with another loca o [2000/09/24] misc/21528 kris installworld fails in secure/usr.bin/open o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/24] misc/21534 ipfw + bridging + 4.x release = crash o [2000/09/25] misc/21536 jkh [PATCH] Add Hungarian FTP mirror to sysin o [2000/09/25] ports/21541 ports Replacement for pr 21538 a [2000/09/25] docs/21542 asmodai sigaction(2) man page is misleading o [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/25] bin/21546 netstat -rn output needs netmask info add o [2000/09/25] conf/21551 /etc/services needs a kpop entry o [2000/09/25] ports/21555 msmith [PATCH] citrix_ica upgrade to version 6.0 o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/26] ports/21575 jseger Update port: graphics/ImageMagick to 5.2. o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/26] misc/21587 install problem in 4.1-Stable o [2000/09/27] ports/21594 ports New port: command line SMTP agent o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/28] ports/21621 reg Update port: devel/libtool to 1.3.5 o [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 o [2000/09/28] misc/21629 jkh Duplicate fortune in fortune datafile s [2000/09/28] misc/21634 alex worms(6) ignores -d option s [2000/09/28] ports/21636 ade gnomelibs PLIST bug o [2000/09/28] misc/21639 It's to easy to accidently tag a pr as Co o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin f [2000/09/29] conf/21649 [Patch] rc.conf knob for unaligned access o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/09/30] bin/21661 green SSH connections die when using some X11 a o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/10/01] i386/21672 AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/01] ports/21681 ports the startup elisp file of PSGML port has o [2000/10/01] kern/21683 Unable to compile kernel after CVSUP. CVS o [2000/10/01] gnu/21685 remote gdb: ptrace(PT_GETDBREGS) failed: o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] docs/21700 bmah Description of SysKonnect Gigabit Etherne o [2000/10/02] ports/21705 ports CSCOPE writes incorrect offset into index o [2000/10/02] docs/21712 dan core(5) manpage fails to mention kern.sug o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/02] ports/21719 nbm New Port: Courier Mail Suite o [2000/10/02] ports/21720 ports Update port to use ADNS. o [2000/10/03] conf/21722 The mixer settings are lost on sysetm reb o [2000/10/03] bin/21725 mtree follows symlinks! o [2000/10/03] misc/21728 KDE won't start with kernel_securelevel=" o [2000/10/03] kern/21737 sendto returns systematically EINVAL with o [2000/10/04] ports/21749 will Update port: audio/cd2mp3 Update to cd2m o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21752 Infortrend IFT-3102 doesn't like SCSI Cac o [2000/10/04] kern/21754 Sound stops working when NetGear USB Devi o [2000/10/04] ports/21755 ports update editors/nano to 0.9.19 o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/04] ports/21760 ports New port: py-4Suite-0.9.0 o [2000/10/05] ports/21765 asami I cat't make ports using pw_gid) != typeof(group->g o [2000/10/22] bin/22211 typoed tar -c clobbers archives o [2000/10/22] kern/22228 Undocumented LINT option 'PANIC_REBOOT_WA s [2000/10/23] kern/22244 wollman [MFC] Uninitialized field in radix_node s o [2000/10/23] ports/22250 jmacd Update port: lang/STK to 4.0.1 (fix ports o [2000/10/23] ports/22255 chuckr Update port: print/transfig to 3.2.3c (fi o [2000/10/23] ports/22258 cwt adding a WITHOUT_PLOT option to the misc/ o [2000/10/23] gnu/22259 root directory change directory bug f [2000/10/23] ports/22260 ports Update for tkgate port o [2000/10/24] bin/22270 [patch] /usr/bin/top wraps wrong w/SMP on o [2000/10/24] ports/22277 green Port Licq 0.85 with qt2.2.0--Messages get a [2000/10/24] misc/22278 dougb rmuser does not allow deletion of all use o [2000/10/24] bin/22279 stock perl5 build does not support %Z spe o [2000/10/25] ports/22288 ports mod_perl dependancy missing from p5-HTML- o [2000/10/25] ports/22295 ports lua 4.0 beta port o [2000/10/25] ports/22296 ports New port: cannadic - Dictionary of Canna o [2000/10/25] ports/22298 ports Move devel/p5-IniConf to devel/p5-Config- o [2000/10/25] ports/22303 ports New port: urlendec. Contains urlencode an o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] ports/22316 hosokawa [PATCH] samba port in a jail(2) environme o [2000/10/26] ports/22326 ports update of the mail/minimalist o [2000/10/26] ports/22330 ports New port: evas-0.0.1 o [2000/10/26] misc/22331 request to add if=/etc/issue to /etc/gett o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/26] docs/22333 doc share/doc/smm/07.lpd building moved in 3. o [2000/10/26] ports/22334 ports New port: geist-0.0.3 o [2000/10/26] ports/22336 ports New port: scrot-0.1 o [2000/10/26] docs/22338 asmodai ugen(4) man page missing o [2000/10/26] conf/22339 request to add new kernel config "GENLINT o [2000/10/27] ports/22346 ports Incorrect plist for ports/net/nocol o [2000/10/27] bin/22347 dd copies incorrect data after 2^32 bytes o [2000/10/27] ports/22349 ports new port: rotate o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou o [2000/10/28] ports/22370 ports emulators/bochs don't build f [2000/10/28] ports/22379 ports New port: libudbc f [2000/10/28] ports/22381 ports New port: misc/mango o [2000/10/29] ports/22393 ports New port: Ipe-5.0: Interactive Picture Ed o [2000/10/29] ports/22395 dburr update of ports/audio/napster o [2000/10/29] ports/22396 wosch portcheckout fails with new port layout o [2000/10/29] ports/22399 msmith PIB 1.2 still looks for MD5 info in files o [2000/10/30] ports/22412 taoka two extraneous ports and one name change o [2000/10/30] misc/22428 FTP: Mirror-TR down a [2000/10/30] docs/22430 darrenr ipresend man page typo o [2000/10/30] ports/22431 ports New Port: o [2000/10/30] misc/22434 problem with certain NIC's using rl on au o [2000/10/31] ports/22439 max Update port: net/delegate o [2000/10/31] bin/22442 [PATCH] Increase speed of split(1) o [2000/10/31] ports/22448 chuckr Update port: graphics/xpdf (fix ports/206 o [2000/10/31] ports/22453 dec Update port: net/gated (fix ports/20656) o [2000/10/31] i386/22456 kde installs but incorrectly f [2000/10/31] docs/22457 dirk Many (15) man pages missing for package m o [2000/10/31] ports/22464 green Update: irc/tkirc o [2000/10/31] kern/22466 yokota function prototype inconsist in kbdreg.h o [2000/10/31] ports/22468 andreas Update port: news/inn-stable - Outdated o [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2000/11/01] ports/22477 ports patchset for "X manpage" errors with XFre o [2000/11/01] ports/22491 jake Fix: devel/gcc6811 o [2000/11/01] ports/22492 ports Fix: mail/imap-uw o [2000/11/01] ports/22493 ports Fails to build if GMAKE not set to full p o [2000/11/01] ports/22495 ports [UPDATE] ports/net/ppxp to use Tcl8.3 an o [2000/11/02] ports/22542 ports New port: devel/py-mxProxy o [2000/11/02] ports/22546 ports Update port: games/pentix o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/02] ports/22558 ports new port -- net/tcpreplay o [2000/11/02] ports/22560 ports New port: WebStone SSL o [2000/11/02] ports/22563 jseger Fix: net/isc-dhcp2 -update master_site an o [2000/11/03] ports/22571 ports install fails o [2000/11/03] ports/22572 okazaki [New port] devel/elib-emacs o [2000/11/03] ports/22573 okazaki [New port] devel/elib-emacs20 o [2000/11/03] ports/22574 okazaki [New port] devel/pcl-cvs-emacs o [2000/11/03] ports/22575 okazaki [New port] devel/pcl-cvs-emacs20 o [2000/11/03] ports/22576 ports New port: audio/xmms-crossfade o [2000/11/03] misc/22577 486SLC2-50MHz won't boot 3.x or 4.x flopp o [2000/11/03] misc/22582 unused descr[] var in sysctl.c:RELENG_4 o [2000/11/03] ports/22584 ports Port fix: audio/id3lib o [2000/11/03] ports/22585 ports New port: qsubst-1.0 o [2000/11/03] ports/22590 jseger graphics/xpaint writes pixmaps to stdout o [2000/11/03] ports/22591 ports Update port: audio/timidity++ o [2000/11/03] ports/22592 ports Update port: audio/timidity++-emacs o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] ports/22605 ports xmcd port depends on mailx port o [2000/11/04] ports/22608 ports The port needs g++ 2.95.2 o [2000/11/04] ports/22611 ports New port: audio/gdrdao o [2000/11/04] bin/22612 crontab -e failures o [2000/11/05] ports/22615 jmz fix for xdm to cope with PAM o [2000/11/05] ports/22616 ports new port of GQmpeg (devel version) o [2000/11/05] kern/22617 Incorrect PnP ID for ALS120 game/joystick o [2000/11/05] ports/22619 ports Fix mail/sendmail (by maintainer) f [2000/11/05] conf/22622 dougb make.conf includes both "optimisation" an o [2000/11/05] ports/22632 ports New port: textproc/gsed - 3.02 o [2000/11/05] i386/22633 when kernel boots smp scsi fails o [2000/11/06] ports/22637 peter [PATCH] squid 2.3 fix o [2000/11/06] ports/22638 ports typo in ports/misc/seisedesktop/pkg-comme o [2000/11/06] ports/22641 ports Update for tkrat2 port to rc7 o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/06] ports/22646 ports SAINT doesn't install correctly o [2000/11/06] ports/22653 ports [PATCH] devel/amulet doesn't compile o [2000/11/06] ports/22655 ports [patch] update of the AbiWord port to ver o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong o [2000/11/07] ports/22662 ports new port: x11/xvkbd o [2000/11/07] bin/22672 Add "next" and "prev" commands to cdcontr o [2000/11/07] docs/22675 doc Function is gone, but the man page linger o [2000/11/07] docs/22676 doc No man pages for Make.conf or /usr/src/sy o [2000/11/07] docs/22678 joe New hooks in crunchgen need to be documen o [2000/11/07] ports/22682 ports [PATCH] java/jdk-tutorial fix o [2000/11/07] ports/22683 ports New port net/dnip-update o [2000/11/08] ports/22686 ports [PATCH] net/citrix_ica update o [2000/11/08] ports/22688 ports genpw-port does not build o [2000/11/08] misc/22696 picobsd build with router configuration c o [2000/11/08] ports/22698 nbm Ports' rc.d files should use rc.conf o [2000/11/08] ports/22699 ports New port: gsi (general sound interface) o [2000/11/08] docs/22701 doc lists missing from search options o [2000/11/08] ports/22704 ports cyrus and cyrus-sasl both install pwcheck o [2000/11/08] ports/22706 ports Update driver o [2000/11/08] kern/22709 yokota daemon_saver.c fails compile with -Wall - o [2000/11/08] kern/22710 yokota snake_saver and star_saver fail to compil o [2000/11/09] docs/22714 doc The -print-size option needs more explana o [2000/11/09] conf/22718 sysinstall in FreeBSD 3.5.1 generates bad o [2000/11/09] ports/22721 paul libldap clash between openldap and ldapsd o [2000/11/09] ports/22725 ports maintainer update: security/nessus suite o [2000/11/09] ports/22729 ports net/ucd-snmp cannot be made on current o [2000/11/09] bin/22730 tcpslice doesn't handle long file offsets o [2000/11/09] ports/22732 ports netscape47-communicator port uses old lay o [2000/11/10] ports/22735 ports KGhostView doesn't recognize spaces in fi o [2000/11/10] ports/22736 mharo Add docs to ftp/proftpd. o [2000/11/10] ports/22752 ports remove qclock port o [2000/11/10] ports/22753 ports new port: misc/rname o [2000/11/10] kern/22754 mmap man page states that non-page aligne o [2000/11/10] kern/22755 Errors reports about the interpreter on s o [2000/11/10] alpha/22759 alpha zip cannot work with existing .zip archiv o [2000/11/11] bin/22770 traceroute enhancement for multiple paths o [2000/11/11] ports/22773 ports Port of GNU Eiffel compiler SmallEiffel o [2000/11/11] ports/22775 demon Update port russian/apache13-modssl o [2000/11/11] ports/22776 ports New port: Tcl Tutorial o [2000/11/11] docs/22778 doc Typo's in About.txt-Layout.txt o [2000/11/12] ports/22786 ports ports/devel/perforce has a checksum error o [2000/11/12] bin/22787 telnet dumps core after connecting to a h o [2000/11/12] ports/22788 ports NEW PORT: x11-fm/rox-base o [2000/11/12] ports/22789 ports NEW PORT: x11-fm/rox-filer o [2000/11/12] kern/22790 Am79C965 ethernet not working when lnc an o [2000/11/12] ports/22791 ports [PATCH] ports/mail/cyrus update o [2000/11/12] ports/22794 ports New port: ccdoc 0.7a (second try) o [2000/11/12] ports/22795 ports ports/lang/gnat-glade wrong path for MAST o [2000/11/12] ports/22797 ports New port: graphics/giblib o [2000/11/12] ports/22798 ports New port: gom-0.1 o [2000/11/12] kern/22801 Modem 'OMRON ME5614ISA' is not recognized o [2000/11/13] ports/22807 ports Update port: lang/gnat-glade o [2000/11/13] ports/22808 ports Update port: audio/xmmix o [2000/11/13] ports/22819 ports ports/www/zope-ptk missing file "pkg-mess o [2000/11/13] kern/22821 darrenr Document IPFILTER_DEFAULT_BLOCK o [2000/11/13] alpha/22824 alpha unaligned accesses from dhclient o [2000/11/13] ports/22827 ports NEW PORT: converters/p5-Convert-TNEF o [2000/11/13] bin/22828 darrenr patch to enable use of LOG_SECURITY in ip o [2000/11/13] ports/22829 ports NEW PORT: archivers/p5-Archive-Tar o [2000/11/13] ports/22830 ports Update port: audio/mpegaudio (fix ports/2 o [2000/11/14] ports/22836 ports new port: www/comclear o [2000/11/14] misc/22837 dwmalone patch for inetd, Feature enhancement for o [2000/11/14] ports/22841 ports update: graphics/p5-Image-Size o [2000/11/14] ports/22848 ports New port: devel/binutils-arm o [2000/11/14] ports/22849 ports New port: devel/gcc-arm o [2000/11/14] ports/22853 ports NEW PORT: graphics/blender o [2000/11/14] ports/22857 ports New port: ari-yahoo: console Yahoo! messe o [2000/11/14] conf/22859 rc.network should start ipf/ipnat AFTER p o [2000/11/14] bin/22860 [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 doc newsyslog man page is misleading and inco o [2000/11/15] ports/22864 ports Port update: devel/omniORB o [2000/11/15] ports/22865 ports New port: devel/omniORBpy o [2000/11/15] ports/22867 ports new port: mail/p5-Mail-IMAPClient o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] bin/22871 burncd fails o [2000/11/15] misc/22873 Perl's core'h conflicts with ncurses.h o [2000/11/15] docs/22875 gshapiro vacation man page omits -l option o [2000/11/15] ports/22876 ports new port: security/pam_pgsql o [2000/11/15] ports/22878 ports piewm doesn't build o [2000/11/15] ports/22879 ports new port: textproc/TclExpat o [2000/11/15] ports/22880 ports mtools-3.9.6 - symlinks changed from abso a [2000/11/16] ports/22883 ade p5-Audio-CD port not functioning correctl o [2000/11/16] misc/22884 By default, ifconfig sets zero IPv6 addre o [2000/11/16] misc/22885 /usr/share/misc/units.lib contains typo o [2000/11/16] ports/22887 ports icqmail don'nt compile on 4.x systems o [2000/11/16] ports/22889 ports Update port: archivers/lha to 1.14i o [2000/11/16] ports/22893 ports Update port: net/mudix to 3.5 o [2000/11/16] ports/22895 ports ports/devel/perforce checksum error for p o [2000/11/16] bin/22897 su doesnt't compile without LOGIN_CAP def o [2000/11/16] ports/22898 kbyanc cclient port should add SSL support o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/16] ports/22903 ports New port: games/smm++ o [2000/11/16] kern/22905 Netgear FA311 Not supported. o [2000/11/16] ports/22907 ports New Port: Popup menu of icons that launch o [2000/11/16] ports/22908 demon new port: skipstone - browser based on mo o [2000/11/17] ports/22910 ports port change-request - http-analyze o [2000/11/17] ports/22912 ports japanese postgresql7 update from 7.0.2 to o [2000/11/17] misc/22914 bootinst messages are not updated o [2000/11/17] ports/22915 torstenb Port fix: converters/recode s [2000/11/17] conf/22916 green Ssh/sshd binaries lacks kerberos support o [2000/11/17] ports/22917 kevlo KDE2 Sound appications do not produce sou o [2000/11/17] ports/22918 kevlo Kpresenter (part of Koffice2) crashes wit o [2000/11/17] docs/22919 doc numerous minor troff errors in distribute o [2000/11/17] ports/22921 ports ports/french/staroffice52 wrong Makefile o [2000/11/17] ports/22925 ports updated (fixed) port of skipstone o [2000/11/17] ports/22927 dan ports/misc/sshbuddy MASTERSITE seems to n o [2000/11/17] bin/22933 green Typographical error in ssh.1 o [2000/11/17] ports/22934 ports Update port math/abs to the latest releas o [2000/11/18] ports/22935 ports new cad/magic and cad/irsim versions (pat o [2000/11/18] conf/22937 Small patch for nicer startup when using o [2000/11/18] ports/22938 ports New port: litestream mp3 streaming system o [2000/11/18] i386/22940 Can't install 4.1.1 on ad0s2 if da0 exist o [2000/11/18] ports/22950 ports NEW PORT: mad - High-quality MPEG audio d o [2000/11/18] ports/22952 ports NEW PORT : eggdrop o [2000/11/19] ports/22957 ports NEW PORT : 6tunnel o [2000/11/19] kern/22958 sos Missing ATA_ENABLE_TAGS in -STABLE LINT o [2000/11/19] kern/22959 Kernel compilation faillure (syscons rela o [2000/11/19] ports/22962 ports Update mail/postfix-current - Patch for T o [2000/11/19] ports/22963 ports NEW PORT: net/pdnsd - cacheing only name o [2000/11/19] bin/22965 [PATCH] fix for minor bug in libc/gen/get o [2000/11/19] kern/22967 stallion driver (stl) shipped with FBSD 4 o [2000/11/20] ports/22970 ports New Port : textproc/py2html o [2000/11/20] ports/22973 ports NEW PORT: net/linpopup - port of windows' o [2000/11/20] ports/22974 ports Minor Makefile update for the Wine port o [2000/11/20] ports/22975 ports UPDATE PORT: security/srm to version 1.2. o [2000/11/20] ports/22976 ports New port: mimelib, C++ class fro encoding o [2000/11/20] ports/22978 ports UPDATE- comms/sredird (1.1.7 -> 1.1.8) o [2000/11/20] conf/22979 sys/conf/newvers.sh erases SNAPDATE o [2000/11/20] ports/22981 ports UPDATE - net/dlint (1.3.3 -> 1.4.0) o [2000/11/20] ports/22982 ports UPDATE - editors/nano (0.9.16 -> 0.9.20) o [2000/11/20] ports/22983 ports UPDATE - security/srm (1.2.0 -> 1.2.2) o [2000/11/20] ports/22984 ports New upstream release (fixes segfault) o [2000/11/20] ports/22985 ports NEW PORT : 6tunnel (2) 1712 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 12:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F46E37B479 for ; Mon, 20 Nov 2000 12:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26933; Mon, 20 Nov 2000 12:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 12:10:03 -0800 (PST) Message-Id: <200011202010.MAA26933@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andrew Grillet Subject: Re: i386/22961: New installation of 4.1.1 won't boot Reply-To: Andrew Grillet Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/22961; it has been noted by GNATS. From: Andrew Grillet To: freebsd-gnats-submit@FreeBSD.org, andrew@grillet98.freeserve.co.uk Cc: Subject: Re: i386/22961: New installation of 4.1.1 won't boot Date: Mon, 20 Nov 2000 20:04:55 +0000 I later found the reference to a problem with Boot0 problems in the Errata for release 4.1, and a new version of boot0. Unfortunately, when I downloaded the new version, and tried boot0cfg, it said 'bad magic'. My guess is that downloading using a browser is equivalent to ftp in text mode. I compiled a boot0 from the source on the CD, and that does not work. I am still looking for a good source. -- Andrew Grillet Check out my new, trendy web site: www.iching.f2s.com (And tell your friends) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 12:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 66C0F37B479 for ; Mon, 20 Nov 2000 12:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28860; Mon, 20 Nov 2000 12:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 12:20:03 -0800 (PST) Message-Id: <200011202020.MAA28860@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Gerhard Sittig Subject: Re: kern/22723: panic in socket operation inside jails Reply-To: Gerhard Sittig Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22723; it has been noted by GNATS. From: Gerhard Sittig To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/22723: panic in socket operation inside jails Date: Mon, 20 Nov 2000 20:05:41 +0100 On Tue, Nov 14, 2000 at 18:22 +0100, Gerhard Sittig wrote: > > So I went and applied the patch from > > cvs diff -r1.73 -r1.74 sys/kern/uipc_socket.c > > (which moves the "prp == 0" check upwards right before > dereferencing the pointer) and commented out the > jail.socket_unixiproute_only=0 line in /etc/sysctl.conf and > everything went fine. Now that this fix was MFCed (see `cvs log sys/kern/uipc_socket.c` [ ... ] ---------------------------- revision 1.68.2.10 date: 2000/11/17 19:47:27; author: jkh; state: Exp; lines: +4 -3 MFC: check to see if prp is null before dereferencing it. ---------------------------- [ ... ] ) I assume this PR can be closed to not falsify the "open PR" stats any longer? virtually yours 82D1 9B9C 01DC 4FB4 D7B4 61BE 3F49 4F77 72DE DA76 Gerhard Sittig true | mail -s "get gpg key" Gerhard.Sittig@gmx.net -- If you don't understand or are scared by any of the above ask your parents or an adult to help you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 12:20:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2967F37B479 for ; Mon, 20 Nov 2000 12:20:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28872; Mon, 20 Nov 2000 12:20:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 12:20:08 -0800 (PST) Message-Id: <200011202020.MAA28872@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Wollman Subject: bin/22965: [PATCH] fix for minor bug in libc/gen/getcap.c Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/22965; it has been noted by GNATS. From: Garrett Wollman To: gad@eclipse.acs.rpi.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: bin/22965: [PATCH] fix for minor bug in libc/gen/getcap.c Date: Mon, 20 Nov 2000 15:16:35 -0500 (EST) -*- Mode: BDE -*- < said: > -static size_t topreclen; /* toprec length */ > -static char *toprec; /* Additional record specified by cgetset() */ > -static int gottoprec; /* Flag indicating retrieval of toprecord */ > +static size_t topreclen = 0; /* toprec length */ > +static char *toprec = NULL; /* Additional record specified by cgetset() */ > +static int gottoprec = 0; /* Flag indicating retrieval of toprecord */ These changes are erroneous, and have the sole effect of moving these variables from .bss, where they occupy only virtual space, to .data where they waste space on disk. > - (void)fclose(pfp); > - if (ferror(pfp)) { > + fcloseres = fclose(pfp); > + pfp = NULL; > + if (fcloseres != 0) { This also appears to be the Wrong Thing. The intent of the code seems to be to detect whether *reading* failed. As implemented in FreeBSD, fclose() of a read-only file can never fail. The correct emendation would be: haderror = ferror(pfp); fclose(pfp); if (haderror) { Even thus, this still could clobber errno (although fgetln() does not necessarily set it usefully); an even better version might be: int savederrno, haderror; savederrno = errno; /* ... */ haderror = ferror(pfp); if (haderror) savederrno = errno; fclose(pfp); if (haderror) { cgetclose(); errno = savederrno; return (-1); } -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 12:31:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from siri.nordier.com (c3-dbn-12.dial-up.net [196.33.200.12]) by hub.freebsd.org (Postfix) with ESMTP id A2B6537B4D7 for ; Mon, 20 Nov 2000 12:31:11 -0800 (PST) Received: (from rnordier@localhost) by siri.nordier.com (8.9.3/8.6.12) id WAA00632; Mon, 20 Nov 2000 22:32:53 +0200 (SAST) From: Robert Nordier Message-Id: <200011202032.WAA00632@siri.nordier.com> Subject: Re: i386/22961: New installation of 4.1.1 won't boot To: andrew@grillet98.screaming.net Date: Mon, 20 Nov 2000 22:32:52 +0200 (SAST) Cc: freebsd-bugs@FreeBSD.ORG In-Reply-To: <200011202010.MAA26933@freefall.freebsd.org> from "Andrew Grillet" at Nov 20, 2000 12:10:03 PM X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andrew Grillet wrote: > The following reply was made to PR i386/22961; it has been noted by GNATS. > > From: Andrew Grillet > To: freebsd-gnats-submit@FreeBSD.org, > andrew@grillet98.freeserve.co.uk > Cc: > Subject: Re: i386/22961: New installation of 4.1.1 won't boot > Date: Mon, 20 Nov 2000 20:04:55 +0000 > > I later found the reference to a problem with Boot0 problems in the > Errata > for release 4.1, and a new version of boot0. Unfortunately, when I > downloaded the new version, and tried boot0cfg, it said 'bad magic'. > > My guess is that downloading using a browser is equivalent to ftp in > text mode. > > I compiled a boot0 from the source on the CD, and that does not work. > I am still looking for a good source. You can pick up a copy of the latest version (which should work with any recent version of FreeBSD) at http://www.freebsd.org/~rnordier/download/boot0-latest.tar.gz There should be a binary included. -- Robert Nordier rnordier@nordier.com rnordier@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 13:10: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 96E6337B479 for ; Mon, 20 Nov 2000 13:10:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37210; Mon, 20 Nov 2000 13:10:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 13:10:07 -0800 (PST) Message-Id: <200011202110.NAA37210@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/22980; it has been noted by GNATS. From: Andre Albsmeier To: m.pizzi@net-one.it Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Date: Mon, 20 Nov 2000 22:00:01 +0100 On Mon, 20-Nov-2000 at 09:28:53 -0800, m.pizzi@net-one.it wrote: > > -- > parigi# nslookup nw_milano.bgsdarcy.it > Server: ginevra.net-one.it > Address: 212.177.116.30 > > Non-authoritative answer: > Name: nw_milano.bgsdarcy.it > Address: 193.70.120.194 > -- > Now, look at this: > --- > parigi# telnet nw_milano.bgsdarcy.it 25 > nw_milano.bgsdarcy.it: Non-recoverable failure in name resolution Maybe removing the illegal underscore might help. You could use a '-' instead of the '_'. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 13:19:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DF7237B4C5; Mon, 20 Nov 2000 13:19:24 -0800 (PST) Received: (from rnordier@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40177; Mon, 20 Nov 2000 13:19:24 -0800 (PST) (envelope-from rnordier@FreeBSD.org) Date: Mon, 20 Nov 2000 13:19:24 -0800 (PST) From: Message-Id: <200011202119.NAA40177@freefall.freebsd.org> To: rnordier@FreeBSD.org, freebsd-bugs@FreeBSD.org, rnordier@FreeBSD.org Subject: Re: i386/22961: New installation of 4.1.1 won't boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New installation of 4.1.1 won't boot Responsible-Changed-From-To: freebsd-bugs->rnordier Responsible-Changed-By: rnordier Responsible-Changed-When: Mon Nov 20 13:16:58 PST 2000 Responsible-Changed-Why: A boot0 problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=22961 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 14:10: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E1D6A37B65E for ; Mon, 20 Nov 2000 14:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA49033; Mon, 20 Nov 2000 14:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 14:10:02 -0800 (PST) Message-Id: <200011202210.OAA49033@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Marco Pizzi Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Reply-To: Marco Pizzi Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/22980; it has been noted by GNATS. From: Marco Pizzi To: Andre Albsmeier , m.pizzi@net-one.it Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Date: Mon, 20 Nov 2000 23:07:44 +0100 At 22.00 20/11/00 +0100, Andre Albsmeier wrote: >On Mon, 20-Nov-2000 at 09:28:53 -0800, m.pizzi@net-one.it wrote: > > > > -- > > parigi# nslookup nw_milano.bgsdarcy.it > > Server: ginevra.net-one.it > > Address: 212.177.116.30 > > > > Non-authoritative answer: > > Name: nw_milano.bgsdarcy.it > > Address: 193.70.120.194 > > -- > > Now, look at this: > > --- > > parigi# telnet nw_milano.bgsdarcy.it 25 > > nw_milano.bgsdarcy.it: Non-recoverable failure in name resolution > >Maybe removing the illegal underscore might help. You could use >a '-' instead of the '_'. But THAT is the real name of the server. That is not my server. Also, the name resolution doesn't fail on a Linux or a Solaris machine! Thanks, Marco. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 16:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CADBE37B4D7 for ; Mon, 20 Nov 2000 16:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA70952; Mon, 20 Nov 2000 16:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by hub.freebsd.org (Postfix) with ESMTP id 0357937B479 for ; Mon, 20 Nov 2000 16:33:48 -0800 (PST) Received: from fwd01.sul.t-online.com by mailout05.sul.t-online.com with smtp id 13y1Nb-00042P-00; Tue, 21 Nov 2000 01:33:47 +0100 Received: from koloth.empire.trek.org (520080156505-0001@[212.184.145.181]) by fwd01.sul.t-online.com with esmtp id 13y1NM-1QAvKKC; Tue, 21 Nov 2000 01:33:32 +0100 Received: from qonos.empire.trek.org (qonos.empire.trek.org [10.1.28.3]) by koloth.empire.trek.org (Postfix) with ESMTP id 46ED817427 for ; Tue, 21 Nov 2000 01:33:32 +0100 (CET) Received: by qonos.empire.trek.org (Postfix, from userid 1001) id 9193B1FFC; Tue, 21 Nov 2000 01:33:48 +0100 (CET) Message-Id: <20001121003348.9193B1FFC@qonos.empire.trek.org> Date: Tue, 21 Nov 2000 01:33:48 +0100 (CET) From: dl@leo.org Reply-To: dl@leo.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/22998: patch for rc.network to load ipl.ko (IPFILTER) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22998 >Category: conf >Synopsis: ipf fails to load the rules if IPFILTER is not statically linked >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 20 16:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Daniel Lang >Release: FreeBSD 4.2-RELEASE i386 >Organization: TU Muenchen >Environment: 4.2-RELEASE, with IPFILTER _not_ in static kernel, and ipfilter_enable="YES" in rc.conf >Description: ipf fails to load the rules if IPFILTER is not in the kernel and does not automatically load the module, so I patched rc.network like the ipfw section, to load the module on demand. >How-To-Repeat: see Environment >Fix: Here is the patch, it pretty much like ipfw section: --- /etc/rc.network Tue Nov 21 00:55:01 2000 +++ /tmp/rc.network.patched Tue Nov 21 01:21:47 2000 @@ -48,8 +48,21 @@ # Establish ipfilter ruleset as early as possible (best in # addition to IPFILTER_DEFAULT_BLOCK in the kernel config file) # + if /sbin/ipfstat -i > /dev/null 2>&1; then + ipfilter_in_kernel=1 + else + ipfilter_in_kernel=0 + fi + case "${ipfilter_enable}" in [Yy][Ee][Ss]) + if [ "${ipfilter_in_kernel}" -eq 0 ] && kldload ipl; then + ipfilter_in_kernel=1 + echo "Kernel ipfilter module loaded." + elif [ "${ipfilter_in_kernel}" -eq 0 ]; then + echo "Warning: ipfilter kernel module failed to load." + fi + if [ -r "${ipfilter_rules}" ]; then echo -n ' ipfilter'; ${ipfilter_program:-ipf -Fa -f} "${ipfilter_rules}" ${ipfilter_flags} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 17:10: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0963637B4C5 for ; Mon, 20 Nov 2000 17:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA75422; Mon, 20 Nov 2000 17:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 17:10:02 -0800 (PST) Message-Id: <200011210110.RAA75422@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "W.H.Scholten" Subject: Re: kern/21674: Fujitsu MO drives M2513A don't like the syncronize cache command. Reply-To: "W.H.Scholten" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21674; it has been noted by GNATS. From: "W.H.Scholten" To: freebsd-gnats-submit@FreeBSD.org, whs@xs4all.nl Cc: Subject: Re: kern/21674: Fujitsu MO drives M2513A don't like the syncronize cache command. Date: Tue, 21 Nov 2000 01:01:15 +0000 This patch is also needed for other fbsd versions, like fbsd 4.1R Wouter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 18:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B13437B4CF for ; Mon, 20 Nov 2000 18:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA91302; Mon, 20 Nov 2000 18:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 18:30:03 -0800 (PST) Message-Id: <200011210230.SAA91302@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garance A Drosehn Subject: Re: bin/22965: [PATCH] fix for minor bug in libc/gen/getcap.c Reply-To: Garance A Drosehn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/22965; it has been noted by GNATS. From: Garance A Drosehn To: Garrett Wollman Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/22965: [PATCH] fix for minor bug in libc/gen/getcap.c Date: Mon, 20 Nov 2000 21:19:44 -0500 Here is an improved version of the patch. Note that I have tested this on a private copy of 'getcap.c' that I use in a project of mine (which is compiled on multiple platforms), so I know it compiles and it works fine in that project. However, I haven't figured out how to build a new libc on freebsd, so I can't say I've tested this patch installed into freebsd's libc... Index: getcap.c =================================================================== RCS file: /home/ncvs/src/lib/libc/gen/getcap.c,v retrieving revision 1.12 diff -u -r1.12 getcap.c --- getcap.c 2000/05/21 02:55:09 1.12 +++ getcap.c 2000/11/21 02:14:10 @@ -647,7 +647,7 @@ char **db_array; { size_t len; - int status, i, done; + int done, hadreaderr, i, savederrno, status; char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE]; u_int dummy; @@ -665,9 +665,14 @@ } else { line = fgetln(pfp, &len); if (line == NULL && pfp) { - (void)fclose(pfp); - if (ferror(pfp)) { - (void)cgetclose(); + hadreaderr = ferror(pfp); + if (hadreaderr) + savederrno = errno; + fclose(pfp); + pfp = NULL; + if (hadreaderr) { + cgetclose(); + errno = savederrno; return (-1); } else { if (*++dbp == NULL) { @@ -724,9 +729,18 @@ } else { /* name field extends beyond the line */ line = fgetln(pfp, &len); if (line == NULL && pfp) { - (void)fclose(pfp); - if (ferror(pfp)) { - (void)cgetclose(); + /* Name extends beyond the EOF! */ + hadreaderr = ferror(pfp); + if (hadreaderr) + savederrno = errno; + fclose(pfp); + pfp = NULL; + if (hadreaderr) { + cgetclose(); + errno = savederrno; + return (-1); + } else { + cgetclose(); return (-1); } } else --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer (MIME & NeXTmail capable) Rensselaer Polytechnic Institute; Troy NY USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 20: 4: 0 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E9EB37B4C5; Mon, 20 Nov 2000 20:03:59 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA11745; Mon, 20 Nov 2000 20:03:59 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Mon, 20 Nov 2000 20:03:59 -0800 (PST) From: Message-Id: <200011210403.UAA11745@freefall.freebsd.org> To: fwancho@whc.net, dougb@FreeBSD.org, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22945: tftp (4.1.1-RELEASE) appears broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tftp (4.1.1-RELEASE) appears broken State-Changed-From-To: feedback->suspended State-Changed-By: dougb State-Changed-When: Mon Nov 20 20:01:19 PST 2000 State-Changed-Why: Originator is unable to update to a more recent version of 4.x, and unable to reproduce the problem on other versions. Please feel free to send a followup to this PR when you have more data. Responsible-Changed-From-To: dougb->freebsd-bugs Responsible-Changed-By: dougb Responsible-Changed-When: Mon Nov 20 20:01:19 PST 2000 Responsible-Changed-Why: When the originator has more data, someone better able to help may be available. http://www.freebsd.org/cgi/query-pr.cgi?pr=22945 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 21:39:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from magpie.csie.nctu.edu.tw (magpie.csie.nctu.edu.tw [140.113.209.21]) by hub.freebsd.org (Postfix) with ESMTP id 3408637B4CF for ; Mon, 20 Nov 2000 21:39:24 -0800 (PST) Received: (from wkwu@localhost) by magpie.csie.nctu.edu.tw (8.11.1/8.9.1) id eAL5biH52330; Tue, 21 Nov 2000 13:37:44 +0800 (CST) Date: Tue, 21 Nov 2000 13:37:44 +0800 From: Wei-Kai Wu To: Jan Conrad Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/22768: fxp get slow often! Message-ID: <20001121133744.A52262@magpie.csie.nctu.edu.tw> References: <200011130240.SAA90906@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from conrad@th.physik.uni-bonn.de on Mon, Nov 20, 2000 at 05:43:18PM +0100 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Nov 20, 2000 at 05:43:18PM +0100, Jan Conrad wrote: > were you able to solve the problem? > We are seeing similar problems here on one of our networks, which, I > think, may be caused by routing problems. But I am not sure. > In our case the problems were independent of whether we use Linux or > FreeBSD and of the particular networking card. > Everything works fine when we go back to 10Mbit, but, of course, this is > not what we want... Hello, The problem still exists! But the crontab that I posted did help a lot.. I don't think my problem is the same with you. Another freebsd server, FreeBSD 4.2-BETA, connect to the same switch, the fxp network device also, works well! I guess the problem may caused by kernel(sure, part of network). Sincerely yours. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 22:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A04037B4CF for ; Mon, 20 Nov 2000 22:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA42253; Mon, 20 Nov 2000 22:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 22:50:03 -0800 (PST) Message-Id: <200011210650.WAA42253@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/22980; it has been noted by GNATS. From: Andre Albsmeier To: Marco Pizzi Cc: Andre Albsmeier , m.pizzi@net-one.it, freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Date: Tue, 21 Nov 2000 07:44:47 +0100 On Mon, 20-Nov-2000 at 23:07:44 +0100, Marco Pizzi wrote: > At 22.00 20/11/00 +0100, Andre Albsmeier wrote: > >On Mon, 20-Nov-2000 at 09:28:53 -0800, m.pizzi@net-one.it wrote: > > > > > > -- > > > parigi# nslookup nw_milano.bgsdarcy.it > > > Server: ginevra.net-one.it > > > Address: 212.177.116.30 > > > > > > Non-authoritative answer: > > > Name: nw_milano.bgsdarcy.it > > > Address: 193.70.120.194 > > > -- > > > Now, look at this: > > > --- > > > parigi# telnet nw_milano.bgsdarcy.it 25 > > > nw_milano.bgsdarcy.it: Non-recoverable failure in name resolution > > > >Maybe removing the illegal underscore might help. You could use > >a '-' instead of the '_'. > > But THAT is the real name of the server. Well, I didn't doubt that it is the real name. But the name is illegal since it contains an underscore. I don't know if this causes the problem. > That is not my server. > Also, the name resolution doesn't fail on a Linux or a Solaris machine! That doesn't mean they are correct. > > Thanks, > > Marco. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 23: 5:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 3D13637B4D7 for ; Mon, 20 Nov 2000 23:05:46 -0800 (PST) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer goliath.siemens.de) Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by goliath.siemens.de (8.11.0/8.11.0) with ESMTP id eAL75hl05561; Tue, 21 Nov 2000 08:05:43 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail3.siemens.de (8.11.1/8.11.1) with ESMTP id eAL75h12355352; Tue, 21 Nov 2000 08:05:43 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.1/8.11.1) id eAL75h236827; Date: Tue, 21 Nov 2000 08:05:43 +0100 From: Andre Albsmeier To: Marco Pizzi Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Message-ID: <20001121080543.A44111@curry.mchp.siemens.de> References: <200011202210.OAA49033@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011202210.OAA49033@freefall.freebsd.org>; from marcolin@net-one.it on Mon, Nov 20, 2000 at 02:10:02PM -0800 X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 20-Nov-2000 at 14:10:02 -0800, Marco Pizzi wrote: > The following reply was made to PR misc/22980; it has been noted by GNATS. > > From: Marco Pizzi > To: Andre Albsmeier , > m.pizzi@net-one.it > Cc: freebsd-gnats-submit@FreeBSD.ORG > Subject: Re: misc/22980: Strange behaviour in domain name resolution!! > Date: Mon, 20 Nov 2000 23:07:44 +0100 > > At 22.00 20/11/00 +0100, Andre Albsmeier wrote: > >On Mon, 20-Nov-2000 at 09:28:53 -0800, m.pizzi@net-one.it wrote: > > > > > > -- > > > parigi# nslookup nw_milano.bgsdarcy.it > > > Server: ginevra.net-one.it > > > Address: 212.177.116.30 > > > > > > Non-authoritative answer: > > > Name: nw_milano.bgsdarcy.it > > > Address: 193.70.120.194 > > > -- > > > Now, look at this: > > > --- > > > parigi# telnet nw_milano.bgsdarcy.it 25 > > > nw_milano.bgsdarcy.it: Non-recoverable failure in name resolution > > > >Maybe removing the illegal underscore might help. You could use > >a '-' instead of the '_'. > > But THAT is the real name of the server. > That is not my server. Then you should tell the administration stuff that the hostname is illegal. > Also, the name resolution doesn't fail on a Linux or a Solaris machine! Well: andre@kahless:~>uname -rs BSD/OS 3.1 andre@kahless:~>telnet nw_milano.bgsdarcy.it 25 nw_milano.bgsdarcy.it: Unknown server error andre@akademie3000:~>uname -rs FreeBSD 2.2.5-RELEASE andre@akademie3000:~>telnet nw_milano.bgsdarcy.it 25 nw_milano.bgsdarcy.it: Unknown host I am sure there is something wrong with the hostname... Either it is the underscore or the fact that it got no reverse entry or both. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 23:14:44 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCC8F37B4CF; Mon, 20 Nov 2000 23:14:43 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA47357; Mon, 20 Nov 2000 23:14:43 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Mon, 20 Nov 2000 23:14:43 -0800 (PST) From: Message-Id: <200011210714.XAA47357@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: conf/22998: ipf fails to load the rules if IPFILTER is not statically linked Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ipf fails to load the rules if IPFILTER is not statically linked Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: dougb Responsible-Changed-When: Mon Nov 20 23:04:25 PST 2000 Responsible-Changed-Why: Darren is the ipfilter czar http://www.freebsd.org/cgi/query-pr.cgi?pr=22998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 23:40: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CF5237B4D7 for ; Mon, 20 Nov 2000 23:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA50364; Mon, 20 Nov 2000 23:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D379B37B4CF; Mon, 20 Nov 2000 23:31:34 -0800 (PST) Message-Id: <20001121073134.D379B37B4CF@hub.freebsd.org> Date: Mon, 20 Nov 2000 23:31:34 -0800 (PST) From: yakisoba@f2.dion.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/23002: libc_r.so.? should link libgcc_r_pic.a, not libgcc_pic.a. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23002 >Category: bin >Synopsis: libc_r.so.? should link libgcc_r_pic.a, not libgcc_pic.a. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 20 23:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Naohiko Tsuji >Release: FreeBSD 4.2-BETA >Organization: >Environment: src/gnu/usr.bin/cc/cc_tools/freebsd-native.h rev 1.7 ( rev 1.5.2.1 in RELENG_4 branch) or later. >Description: >How-To-Repeat: >Fix: 1. lib/libc_r/Makefile add below. LDADD = -pthread 2. Makefile.inc1 modified for 'make buildworld'. libraries: .for _lib in ${_csu} gnu/lib/csu gnu/lib/libgcc gnu/lib/libgcc_r lib/libmd lib/libcrypt \ ^^^^^^^^^^^^^ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 20 23:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7971637B4CF for ; Mon, 20 Nov 2000 23:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA51502; Mon, 20 Nov 2000 23:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 20 Nov 2000 23:50:03 -0800 (PST) Message-Id: <200011210750.XAA51502@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Emiel Kollof Subject: Re: kern/22959: Kernel compilation faillure (syscons related) Reply-To: Emiel Kollof Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22959; it has been noted by GNATS. From: Emiel Kollof To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/22959: Kernel compilation faillure (syscons related) Date: Tue, 21 Nov 2000 08:49:34 +0100 Problem solved, guess my problem was between the screen and the chair... Move along now, nothing to see here :) Cheers, Emiel -- "If you can count your money, you don't have a billion dollars." -- J. Paul Getty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 1:47: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9236937B4CF; Tue, 21 Nov 2000 01:47:03 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA68837; Tue, 21 Nov 2000 01:47:03 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 21 Nov 2000 01:47:03 -0800 (PST) From: Message-Id: <200011210947.BAA68837@freefall.freebsd.org> To: coolvibe@xs4all.nl, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/22959: Kernel compilation faillure (syscons related) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel compilation faillure (syscons related) State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Nov 21 01:45:49 PST 2000 State-Changed-Why: PEBKAC :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=22959 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 4:19:39 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3D0C37B4CF for ; Tue, 21 Nov 2000 04:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA92572; Tue, 21 Nov 2000 04:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Nov 2000 04:10:03 -0800 (PST) Message-Id: <200011211210.EAA92572@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Andrzej Ritz" Subject: Re: gnu/22972: Internal Compiler Error Reply-To: "Andrzej Ritz" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR gnu/22972; it has been noted by GNATS. From: "Andrzej Ritz" To: , Cc: Subject: Re: gnu/22972: Internal Compiler Error Date: Tue, 21 Nov 2000 13:05:32 +0100 This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C053BB.BAB3A8E0 Content-Type: multipart/alternative; boundary="----=_NextPart_001_000A_01C053BB.BAB3A8E0" ------=_NextPart_001_000A_01C053BB.BAB3A8E0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable Here is a preprocessed version of the offending file. If you compile it = o the same platform you should be able to repeat the error. Thanks for your swift reply Andrzej Ritz ------=_NextPart_001_000A_01C053BB.BAB3A8E0 Content-Type: text/html; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable
Here is a = preprocessed version of=20 the offending file. If you compile it o  the same platform = you
should be able to repeat the error.
 
 
    Thanks for your = swift=20 reply
 
 
    =    =20     Andrzej Ritz
 
 
------=_NextPart_001_000A_01C053BB.BAB3A8E0-- ------=_NextPart_000_0009_01C053BB.BAB3A8E0 Content-Type: application/octet-stream; name="ftab.cpp" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="ftab.cpp" # 1 "ftab.cpp"=0A= # 1 "sim.h" 1=0A= =0A= =0A= # 1 "/usr/include/stdlib.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/cdefs.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 106 "/usr/include/sys/cdefs.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 193 "/usr/include/sys/cdefs.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 40 "/usr/include/stdlib.h" 2 3=0A= =0A= =0A= # 1 "/usr/include/machine/ansi.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef long long __int64_t;=0A= =0A= typedef unsigned long long __uint64_t;=0A= =0A= =0A= =0A= =0A= =0A= typedef signed char __int8_t;=0A= typedef unsigned char __uint8_t;=0A= typedef short __int16_t;=0A= typedef unsigned short __uint16_t;=0A= typedef int __int32_t;=0A= typedef unsigned int __uint32_t;=0A= =0A= typedef int __intptr_t;=0A= typedef unsigned int __uintptr_t;=0A= =0A= =0A= # 42 "/usr/include/stdlib.h" 2 3=0A= =0A= =0A= =0A= =0A= typedef int rune_t;=0A= =0A= =0A= =0A= =0A= =0A= typedef unsigned int size_t;=0A= =0A= =0A= =0A= =0A= typedef int wchar_t;=0A= =0A= =0A= =0A= typedef struct {=0A= int quot; =0A= int rem; =0A= } div_t;=0A= =0A= typedef struct {=0A= long quot; =0A= long rem; =0A= } ldiv_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern int __mb_cur_max;=0A= =0A= =0A= extern "C" { =0A= void abort (void) ;=0A= int abs (int) ;=0A= int atexit (void (*)(void)) ;=0A= double atof (const char *) ;=0A= int atoi (const char *) ;=0A= long atol (const char *) ;=0A= void *bsearch (const void *, const void *, size_t,=0A= size_t, int (*)(const void *, const void *)) ;=0A= void *calloc (size_t, size_t) ;=0A= div_t div (int, int) ;=0A= void exit (int) ;=0A= void free (void *) ;=0A= char *getenv (const char *) ;=0A= long labs (long) ;=0A= ldiv_t ldiv (long, long) ;=0A= void *malloc (size_t) ;=0A= void qsort (void *, size_t, size_t,=0A= int (*)(const void *, const void *)) ;=0A= int rand (void) ;=0A= void *realloc (void *, size_t) ;=0A= void srand (unsigned) ;=0A= double strtod (const char *, char **) ;=0A= long strtol (const char *, char **, int) ;=0A= unsigned long=0A= strtoul (const char *, char **, int) ;=0A= int system (const char *) ;=0A= =0A= int mblen (const char *, size_t) ;=0A= size_t mbstowcs (wchar_t *, const char *, size_t) ;=0A= int wctomb (char *, wchar_t) ;=0A= int mbtowc (wchar_t *, const char *, size_t) ;=0A= size_t wcstombs (char *, const wchar_t *, size_t) ;=0A= =0A= =0A= int putenv (const char *) ;=0A= int setenv (const char *, const char *, int) ;=0A= =0A= double drand48 (void) ;=0A= double erand48 (unsigned short[3]) ;=0A= long jrand48 (unsigned short[3]) ;=0A= void lcong48 (unsigned short[7]) ;=0A= long lrand48 (void) ;=0A= long mrand48 (void) ;=0A= long nrand48 (unsigned short[3]) ;=0A= unsigned short=0A= *seed48 (unsigned short[3]) ;=0A= void srand48 (long) ;=0A= =0A= void *alloca (size_t) ; =0A= =0A= __uint32_t=0A= arc4random (void) ;=0A= void arc4random_addrandom (unsigned char *dat, int datlen) ;=0A= void arc4random_stir (void) ;=0A= char *getbsize (int *, long *) ;=0A= char *cgetcap (char *, char *, int) ;=0A= int cgetclose (void) ;=0A= int cgetent (char **, char **, char *) ;=0A= int cgetfirst (char **, char **) ;=0A= int cgetmatch (char *, char *) ;=0A= int cgetnext (char **, char **) ;=0A= int cgetnum (char *, char *, long *) ;=0A= int cgetset (char *) ;=0A= int cgetstr (char *, char *, char **) ;=0A= int cgetustr (char *, char *, char **) ;=0A= =0A= int daemon (int, int) ;=0A= char *devname (int, int) ;=0A= int getloadavg (double [], int) ;=0A= =0A= char *group_from_gid (unsigned long, int) ;=0A= int heapsort (void *, size_t, size_t,=0A= int (*)(const void *, const void *)) ;=0A= char *initstate (unsigned long, char *, long) ;=0A= int mergesort (void *, size_t, size_t,=0A= int (*)(const void *, const void *)) ;=0A= int radixsort (const unsigned char **, int, const unsigned char *,=0A= unsigned) ;=0A= int sradixsort (const unsigned char **, int, const unsigned char *,=0A= unsigned) ;=0A= int rand_r (unsigned *) ;=0A= long random (void) ;=0A= void *reallocf (void *, size_t) ;=0A= char *realpath (const char *, char resolved_path[]) ;=0A= char *setstate (char *) ;=0A= void srandom (unsigned long) ;=0A= void srandomdev (void) ;=0A= char *user_from_uid (unsigned long, int) ;=0A= =0A= =0A= =0A= =0A= =0A= void unsetenv (const char *) ;=0A= =0A= } =0A= =0A= =0A= # 3 "sim.h" 2=0A= =0A= # 1 "/usr/include/stdio.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef __int64_t fpos_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct __sbuf {=0A= unsigned char *_base;=0A= int _size;=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct __sFILE {=0A= unsigned char *_p; =0A= int _r; =0A= int _w; =0A= short _flags; =0A= short _file; =0A= struct __sbuf _bf; =0A= int _lbfsize; =0A= =0A= =0A= void *_cookie; =0A= int (*_close) (void *) ;=0A= int (*_read) (void *, char *, int) ;=0A= fpos_t (*_seek) (void *, fpos_t, int) ;=0A= int (*_write) (void *, const char *, int) ;=0A= =0A= =0A= struct __sbuf _ub; =0A= unsigned char *_up; =0A= int _ur; =0A= =0A= =0A= unsigned char _ubuf[3]; =0A= unsigned char _nbuf[1]; =0A= =0A= =0A= struct __sbuf _lb; =0A= =0A= =0A= int _blksize; =0A= fpos_t _offset; =0A= } FILE;=0A= =0A= extern "C" { =0A= extern FILE __sF[];=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= void clearerr (FILE *) ;=0A= int fclose (FILE *) ;=0A= int feof (FILE *) ;=0A= int ferror (FILE *) ;=0A= int fflush (FILE *) ;=0A= int fgetc (FILE *) ;=0A= int fgetpos (FILE *, fpos_t *) ;=0A= char *fgets (char *, int, FILE *) ;=0A= FILE *fopen (const char *, const char *) ;=0A= int fprintf (FILE *, const char *, ...) ;=0A= int fputc (int, FILE *) ;=0A= int fputs (const char *, FILE *) ;=0A= size_t fread (void *, size_t, size_t, FILE *) ;=0A= FILE *freopen (const char *, const char *, FILE *) ;=0A= int fscanf (FILE *, const char *, ...) ;=0A= int fseek (FILE *, long, int) ;=0A= int fsetpos (FILE *, const fpos_t *) ;=0A= long ftell (FILE *) ;=0A= size_t fwrite (const void *, size_t, size_t, FILE *) ;=0A= int getc (FILE *) ;=0A= int getchar (void) ;=0A= char *gets (char *) ;=0A= =0A= extern const int sys_nerr; =0A= extern const char * const sys_errlist[];=0A= =0A= void perror (const char *) ;=0A= int printf (const char *, ...) ;=0A= int putc (int, FILE *) ;=0A= int putchar (int) ;=0A= int puts (const char *) ;=0A= int remove (const char *) ;=0A= int rename (const char *, const char *) ;=0A= void rewind (FILE *) ;=0A= int scanf (const char *, ...) ;=0A= void setbuf (FILE *, char *) ;=0A= int setvbuf (FILE *, char *, int, size_t) ;=0A= int sprintf (char *, const char *, ...) ;=0A= int sscanf (const char *, const char *, ...) ;=0A= FILE *tmpfile (void) ;=0A= char *tmpnam (char *) ;=0A= int ungetc (int, FILE *) ;=0A= int vfprintf (FILE *, const char *, char * ) ;=0A= int vprintf (const char *, char * ) ;=0A= int vsprintf (char *, const char *, char * ) ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= char *ctermid (char *) ;=0A= FILE *fdopen (int, const char *) ;=0A= int fileno (FILE *) ;=0A= int ftrylockfile (FILE *) ;=0A= void flockfile (FILE *) ;=0A= void funlockfile (FILE *) ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= =0A= int ftruncate (int, __int64_t ) ;=0A= =0A= =0A= =0A= __int64_t lseek (int, __int64_t , int) ;=0A= =0A= =0A= =0A= void *mmap (void *, size_t, int, int, int, __int64_t ) ;=0A= =0A= =0A= =0A= int truncate (const char *, __int64_t ) ;=0A= =0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int asprintf (char **, const char *, ...) ;=0A= char *ctermid_r (char *) ;=0A= char *fgetln (FILE *, size_t *) ;=0A= int fpurge (FILE *) ;=0A= int fseeko (FILE *, __int64_t , int) ;=0A= __int64_t ftello (FILE *) ;=0A= int getw (FILE *) ;=0A= int pclose (FILE *) ;=0A= FILE *popen (const char *, const char *) ;=0A= int putw (int, FILE *) ;=0A= void setbuffer (FILE *, char *, int) ;=0A= int setlinebuf (FILE *) ;=0A= char *tempnam (const char *, const char *) ;=0A= int snprintf (char *, size_t, const char *, ...) ;=0A= int vasprintf (char **, const char *, char * ) =0A= ;=0A= int vsnprintf (char *, size_t, const char *, char * ) =0A= ;=0A= int vscanf (const char *, char * ) ;=0A= int vsscanf (const char *, const char *, char * ) =0A= ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= FILE *funopen (const void *,=0A= int (*)(void *, char *, int),=0A= int (*)(void *, const char *, int),=0A= fpos_t (*)(void *, fpos_t, int),=0A= int (*)(void *)) ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int __srget (FILE *) ;=0A= int __svfscanf (FILE *, const char *, char * ) ;=0A= int __swbuf (int, FILE *) ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 438 "/usr/include/stdio.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 4 "sim.h" 2=0A= =0A= # 1 "/usr/include/math.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern char __infinity[];=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern int signgam;=0A= =0A= =0A= enum fdversion {fdlibm_ieee =3D -1, fdlibm_svid, fdlibm_xopen, = fdlibm_posix};=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern enum fdversion _fdlib_version ;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 77 "/usr/include/math.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= =0A= =0A= extern double acos (double) ;=0A= extern double asin (double) ;=0A= extern double atan (double) ;=0A= extern double atan2 (double, double) ;=0A= extern double cos (double) ;=0A= extern double sin (double) ;=0A= extern double tan (double) ;=0A= =0A= extern double cosh (double) ;=0A= extern double sinh (double) ;=0A= extern double tanh (double) ;=0A= =0A= extern double exp (double) ;=0A= extern double frexp (double, int *) ;=0A= extern double ldexp (double, int) ;=0A= extern double log (double) ;=0A= extern double log10 (double) ;=0A= extern double modf (double, double *) ;=0A= =0A= extern double pow (double, double) ;=0A= extern double sqrt (double) ;=0A= =0A= extern double ceil (double) ;=0A= extern double fabs (double) ;=0A= extern double floor (double) ;=0A= extern double fmod (double, double) ;=0A= =0A= =0A= extern double erf (double) ;=0A= extern double erfc (double) ;=0A= extern double gamma (double) ;=0A= extern double hypot (double, double) ;=0A= extern int isinf (double) ;=0A= extern int isnan (double) ;=0A= extern int finite (double) ;=0A= extern double j0 (double) ;=0A= extern double j1 (double) ;=0A= extern double jn (int, double) ;=0A= extern double lgamma (double) ;=0A= extern double y0 (double) ;=0A= extern double y1 (double) ;=0A= extern double yn (int, double) ;=0A= =0A= =0A= extern double acosh (double) ;=0A= extern double asinh (double) ;=0A= extern double atanh (double) ;=0A= extern double cbrt (double) ;=0A= extern double logb (double) ;=0A= extern double nextafter (double, double) ;=0A= extern double remainder (double, double) ;=0A= extern double scalb (double, double) ;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern double significand (double) ;=0A= =0A= =0A= =0A= =0A= extern double copysign (double, double) ;=0A= extern int ilogb (double) ;=0A= extern double rint (double) ;=0A= extern double scalbn (double, int) ;=0A= =0A= =0A= =0A= =0A= extern double cabs();=0A= extern double drem (double, double) ;=0A= extern double expm1 (double) ;=0A= extern double log1p (double) ;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern float acosf (float) ;=0A= extern float asinf (float) ;=0A= extern float atanf (float) ;=0A= extern float atan2f (float, float) ;=0A= extern float cosf (float) ;=0A= extern float sinf (float) ;=0A= extern float tanf (float) ;=0A= =0A= extern float coshf (float) ;=0A= extern float sinhf (float) ;=0A= extern float tanhf (float) ;=0A= =0A= extern float expf (float) ;=0A= extern float frexpf (float, int *) ;=0A= extern float ldexpf (float, int) ;=0A= extern float logf (float) ;=0A= extern float log10f (float) ;=0A= extern float modff (float, float *) ;=0A= =0A= extern float powf (float, float) ;=0A= extern float sqrtf (float) ;=0A= =0A= extern float ceilf (float) ;=0A= extern float fabsf (float) ;=0A= extern float floorf (float) ;=0A= extern float fmodf (float, float) ;=0A= =0A= extern float erff (float) ;=0A= extern float erfcf (float) ;=0A= extern float gammaf (float) ;=0A= extern float hypotf (float, float) ;=0A= extern int isnanf (float) ;=0A= extern int finitef (float) ;=0A= extern float j0f (float) ;=0A= extern float j1f (float) ;=0A= extern float jnf (int, float) ;=0A= extern float lgammaf (float) ;=0A= extern float y0f (float) ;=0A= extern float y1f (float) ;=0A= extern float ynf (int, float) ;=0A= =0A= extern float acoshf (float) ;=0A= extern float asinhf (float) ;=0A= extern float atanhf (float) ;=0A= extern float cbrtf (float) ;=0A= extern float logbf (float) ;=0A= extern float nextafterf (float, float) ;=0A= extern float remainderf (float, float) ;=0A= extern float scalbf (float, float) ;=0A= =0A= =0A= =0A= =0A= extern float significandf (float) ;=0A= =0A= =0A= =0A= =0A= =0A= extern float copysignf (float, float) ;=0A= extern int ilogbf (float) ;=0A= extern float rintf (float) ;=0A= extern float scalbnf (float, int) ;=0A= =0A= =0A= =0A= =0A= extern float cabsf ();=0A= extern float dremf (float, float) ;=0A= extern float expm1f (float) ;=0A= extern float log1pf (float) ;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= } =0A= =0A= =0A= # 5 "sim.h" 2=0A= =0A= # 1 "/usr/include/setjmp.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/machine/setjmp.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct { int _sjb[11 + 1]; } sigjmp_buf[1];=0A= =0A= =0A= typedef struct { int _jb[11 + 1]; } jmp_buf[1];=0A= # 45 "/usr/include/setjmp.h" 2 3=0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int setjmp (jmp_buf) ;=0A= void longjmp (jmp_buf, int) ;=0A= =0A= =0A= int sigsetjmp (sigjmp_buf, int) ;=0A= void siglongjmp (sigjmp_buf, int) ;=0A= =0A= =0A= =0A= int _setjmp (jmp_buf) ;=0A= void _longjmp (jmp_buf, int) ;=0A= void longjmperror (void) ;=0A= =0A= } =0A= =0A= =0A= # 6 "sim.h" 2=0A= =0A= # 1 "/usr/include/ctype.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/runetype.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= rune_t min; =0A= rune_t max; =0A= rune_t map; =0A= unsigned long *types; =0A= } _RuneEntry;=0A= =0A= typedef struct {=0A= int nranges; =0A= _RuneEntry *ranges; =0A= } _RuneRange;=0A= =0A= typedef struct {=0A= char magic[8]; =0A= char encoding[32]; =0A= =0A= rune_t (*sgetrune)=0A= (const char *, size_t, char const **) ;=0A= int (*sputrune)=0A= (rune_t, char *, size_t, char **) ;=0A= rune_t invalid_rune;=0A= =0A= unsigned long runetype[(1 <<8 ) ];=0A= rune_t maplower[(1 <<8 ) ];=0A= rune_t mapupper[(1 <<8 ) ];=0A= =0A= =0A= =0A= =0A= =0A= =0A= _RuneRange runetype_ext;=0A= _RuneRange maplower_ext;=0A= _RuneRange mapupper_ext;=0A= =0A= void *variable; =0A= int variable_len; =0A= } _RuneLocale;=0A= =0A= =0A= =0A= extern _RuneLocale _DefaultRuneLocale;=0A= extern _RuneLocale *_CurrentRuneLocale;=0A= =0A= =0A= # 52 "/usr/include/ctype.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int isalnum (int) ;=0A= int isalpha (int) ;=0A= int iscntrl (int) ;=0A= int isdigit (int) ;=0A= int isgraph (int) ;=0A= int islower (int) ;=0A= int isprint (int) ;=0A= int ispunct (int) ;=0A= int isspace (int) ;=0A= int isupper (int) ;=0A= int isxdigit (int) ;=0A= int tolower (int) ;=0A= int toupper (int) ;=0A= =0A= =0A= int digittoint (int) ;=0A= int isascii (int) ;=0A= int isblank (int) ;=0A= int ishexnumber (int) ;=0A= int isideogram (int) ;=0A= int isnumber (int) ;=0A= int isphonogram (int) ;=0A= int isrune (int) ;=0A= int isspecial (int) ;=0A= int toascii (int) ;=0A= =0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= unsigned long ___runetype (int ) ;=0A= int ___tolower (int ) ;=0A= int ___toupper (int ) ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= static inline int=0A= __maskrune(int _c, unsigned long _f)=0A= {=0A= return ((_c < 0 || _c >=3D (1 <<8 ) ) ? ___runetype(_c) :=0A= _CurrentRuneLocale->runetype[_c]) & _f;=0A= }=0A= =0A= static inline int=0A= __isctype(int _c, unsigned long _f)=0A= {=0A= return (_c < 0 || _c >=3D (1 <<8 ) ) ? 0 :=0A= !!(_DefaultRuneLocale.runetype[_c] & _f);=0A= }=0A= =0A= static inline int =0A= __toupper(int _c)=0A= {=0A= return (_c < 0 || _c >=3D (1 <<8 ) ) ? ___toupper(_c) :=0A= _CurrentRuneLocale->mapupper[_c];=0A= }=0A= =0A= static inline int =0A= __tolower(int _c)=0A= {=0A= return (_c < 0 || _c >=3D (1 <<8 ) ) ? ___tolower(_c) :=0A= _CurrentRuneLocale->maplower[_c];=0A= }=0A= =0A= # 185 "/usr/include/ctype.h" 3=0A= =0A= =0A= =0A= # 7 "sim.h" 2=0A= =0A= # 1 "/usr/include/string.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= void *memchr (const void *, int, size_t) ;=0A= int memcmp (const void *, const void *, size_t) ;=0A= void *memcpy (void *, const void *, size_t) ;=0A= void *memmove (void *, const void *, size_t) ;=0A= void *memset (void *, int, size_t) ;=0A= char *strcat (char *, const char *) ;=0A= char *strchr (const char *, int) ;=0A= int strcmp (const char *, const char *) ;=0A= int strcoll (const char *, const char *) ;=0A= char *strcpy (char *, const char *) ;=0A= size_t strcspn (const char *, const char *) ;=0A= char *strerror (int) ;=0A= size_t strlen (const char *) ;=0A= char *strncat (char *, const char *, size_t) ;=0A= int strncmp (const char *, const char *, size_t) ;=0A= char *strncpy (char *, const char *, size_t) ;=0A= char *strpbrk (const char *, const char *) ;=0A= char *strrchr (const char *, int) ;=0A= size_t strspn (const char *, const char *) ;=0A= char *strstr (const char *, const char *) ;=0A= char *strtok (char *, const char *) ;=0A= size_t strxfrm (char *, const char *, size_t) ;=0A= =0A= =0A= =0A= int bcmp (const void *, const void *, size_t) ;=0A= void bcopy (const void *, void *, size_t) ;=0A= void bzero (void *, size_t) ;=0A= int ffs (int) ;=0A= char *index (const char *, int) ;=0A= void *memccpy (void *, const void *, int, size_t) ;=0A= char *rindex (const char *, int) ;=0A= int strcasecmp (const char *, const char *) ;=0A= char *strdup (const char *) ;=0A= size_t strlcat (char *, const char *, size_t) ;=0A= size_t strlcpy (char *, const char *, size_t) ;=0A= void strmode (int, char *) ;=0A= int strncasecmp (const char *, const char *, size_t) ;=0A= char *strsep (char **, const char *) ;=0A= char *strsignal (int) ;=0A= char *strtok_r (char *, const char *, char **) ;=0A= void swab (const void *, void *, size_t) ;=0A= =0A= } =0A= =0A= =0A= # 8 "sim.h" 2=0A= =0A= # 1 "/usr/include/unistd.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/types.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/inttypes.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef __int8_t int8_t;=0A= typedef __int16_t int16_t;=0A= typedef __int32_t int32_t;=0A= typedef __int64_t int64_t;=0A= =0A= typedef __uint8_t uint8_t;=0A= typedef __uint16_t uint16_t;=0A= typedef __uint32_t uint32_t;=0A= typedef __uint64_t uint64_t;=0A= =0A= typedef __intptr_t intptr_t;=0A= typedef __uintptr_t uintptr_t;=0A= =0A= =0A= # 48 "/usr/include/sys/types.h" 2 3=0A= =0A= # 1 "/usr/include/machine/types.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _physadr {=0A= int r[1];=0A= } *physadr;=0A= =0A= typedef struct label_t {=0A= int val[6];=0A= } label_t;=0A= =0A= =0A= typedef unsigned int vm_offset_t;=0A= typedef __int64_t vm_ooffset_t;=0A= typedef unsigned int vm_pindex_t;=0A= typedef unsigned int vm_size_t;=0A= =0A= typedef __int32_t register_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef __uint32_t intrmask_t;=0A= =0A= =0A= typedef void inthand2_t (void *_cookie) ;=0A= typedef void ointhand2_t (int _device_id) ;=0A= =0A= =0A= # 49 "/usr/include/sys/types.h" 2 3=0A= =0A= =0A= =0A= typedef unsigned char u_char;=0A= typedef unsigned short u_short;=0A= typedef unsigned int u_int;=0A= typedef unsigned long u_long;=0A= typedef unsigned short ushort; =0A= typedef unsigned int uint; =0A= =0A= =0A= typedef __uint8_t u_int8_t;=0A= typedef __uint16_t u_int16_t;=0A= typedef __uint32_t u_int32_t;=0A= typedef __uint64_t u_int64_t;=0A= =0A= typedef u_int64_t u_quad_t; =0A= typedef int64_t quad_t;=0A= typedef quad_t * qaddr_t;=0A= =0A= typedef char * caddr_t; =0A= typedef const char * c_caddr_t; =0A= typedef volatile char *v_caddr_t; =0A= typedef int32_t daddr_t; =0A= typedef u_int32_t u_daddr_t; =0A= typedef u_int32_t fixpt_t; =0A= typedef u_int32_t gid_t; =0A= typedef u_int32_t ino_t; =0A= typedef long key_t; =0A= typedef u_int16_t mode_t; =0A= typedef u_int16_t nlink_t; =0A= typedef __int64_t off_t; =0A= typedef int pid_t; =0A= typedef quad_t rlim_t; =0A= =0A= =0A= =0A= typedef int32_t segsz_t; =0A= =0A= typedef int32_t swblk_t; =0A= typedef int32_t ufs_daddr_t;=0A= typedef u_int32_t uid_t; =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef u_int32_t dev_t; =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/machine/endian.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= unsigned long htonl (unsigned long) ;=0A= unsigned short htons (unsigned short) ;=0A= unsigned long ntohl (unsigned long) ;=0A= unsigned short ntohs (unsigned short) ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 84 "/usr/include/machine/endian.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 125 "/usr/include/sys/types.h" 2 3=0A= =0A= =0A= =0A= typedef unsigned long clock_t;=0A= =0A= =0A= =0A= =0A= typedef int clockid_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef int ssize_t;=0A= =0A= =0A= =0A= =0A= typedef long time_t;=0A= =0A= =0A= =0A= =0A= typedef int timer_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef unsigned long fd_mask;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct fd_set {=0A= fd_mask fds_bits[((( 1024 ) + (( (sizeof(fd_mask) * 8 ) ) - 1)) / ( = (sizeof(fd_mask) * 8 ) )) ];=0A= } fd_set;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= } =0A= =0A= =0A= =0A= =0A= =0A= # 41 "/usr/include/unistd.h" 2 3=0A= =0A= # 1 "/usr/include/sys/unistd.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/_posix.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 70 "/usr/include/sys/_posix.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 40 "/usr/include/sys/unistd.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 42 "/usr/include/unistd.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= void _exit (int) ;=0A= int access (const char *, int) ;=0A= unsigned int alarm (unsigned int) ;=0A= int chdir (const char *) ;=0A= int chown (const char *, uid_t, gid_t) ;=0A= int close (int) ;=0A= int dup (int) ;=0A= int dup2 (int, int) ;=0A= int execl (const char *, const char *, ...) ;=0A= int execle (const char *, const char *, ...) ;=0A= int execlp (const char *, const char *, ...) ;=0A= int execv (const char *, char * const *) ;=0A= int execve (const char *, char * const *, char * const *) ;=0A= int execvp (const char *, char * const *) ;=0A= pid_t fork (void) ;=0A= long fpathconf (int, int) ;=0A= char *getcwd (char *, size_t) ;=0A= gid_t getegid (void) ;=0A= uid_t geteuid (void) ;=0A= gid_t getgid (void) ;=0A= int getgroups (int, gid_t []) ;=0A= char *getlogin (void) ;=0A= pid_t getpgrp (void) ;=0A= pid_t getpid (void) ;=0A= pid_t getppid (void) ;=0A= uid_t getuid (void) ;=0A= int isatty (int) ;=0A= int link (const char *, const char *) ;=0A= =0A= =0A= =0A= =0A= long pathconf (const char *, int) ;=0A= int pause (void) ;=0A= int pipe (int *) ;=0A= ssize_t read (int, void *, size_t) ;=0A= int rmdir (const char *) ;=0A= int setgid (gid_t) ;=0A= int setpgid (pid_t, pid_t) ;=0A= void setproctitle (const char *_fmt, ...) __attribute__((__format__ = (__printf0__, 1 , 2 ))) ;=0A= pid_t setsid (void) ;=0A= int setuid (uid_t) ;=0A= unsigned int sleep (unsigned int) ;=0A= long sysconf (int) ;=0A= pid_t tcgetpgrp (int) ;=0A= int tcsetpgrp (int, pid_t) ;=0A= char *ttyname (int) ;=0A= int unlink (const char *) ;=0A= ssize_t write (int, const void *, size_t) ;=0A= =0A= extern char *optarg; =0A= extern int optind, opterr, optopt;=0A= int getopt (int, char * const [], const char *) ;=0A= =0A= =0A= =0A= struct timeval; =0A= =0A= int acct (const char *) ;=0A= int async_daemon (void) ;=0A= char *brk (const char *) ;=0A= int chroot (const char *) ;=0A= size_t confstr (int, char *, size_t) ;=0A= char *crypt (const char *, const char *) ;=0A= const char *crypt_get_format (void) ;=0A= int crypt_set_format (const char *) ;=0A= int des_cipher (const char *, char *, long, int) ;=0A= int des_setkey (const char *key) ;=0A= int encrypt (char *, int) ;=0A= void endusershell (void) ;=0A= int exect (const char *, char * const *, char * const *) ;=0A= int fchdir (int) ;=0A= int fchown (int, uid_t, gid_t) ;=0A= char *fflagstostr (u_long) ;=0A= int fsync (int) ;=0A= =0A= =0A= =0A= =0A= int getdomainname (char *, int) ;=0A= int getdtablesize (void) ;=0A= int getgrouplist (const char *, int, int *, int *) ;=0A= long gethostid (void) ;=0A= int gethostname (char *, int) ;=0A= char *getlogin_r (char *, int) ;=0A= mode_t getmode (const void *, mode_t) ;=0A= int getpagesize (void) ;=0A= char *getpass (const char *) ;=0A= int getpgid (pid_t _pid) ;=0A= int getresgid (gid_t *, gid_t *, gid_t *) ;=0A= int getresuid (uid_t *, uid_t *, uid_t *) ;=0A= int getsid (pid_t _pid) ;=0A= char *getusershell (void) ;=0A= char *getwd (char *) ; =0A= int initgroups (const char *, int) ;=0A= int iruserok (unsigned long, int, const char *, const char *) ;=0A= int iruserok_sa (const void *, int, int, const char *, const char *) ;=0A= int issetugid (void) ;=0A= int lchown (const char *, uid_t, gid_t) ;=0A= int lockf (int, int, off_t) ;=0A= char *mkdtemp (char *) ;=0A= int mknod (const char *, mode_t, dev_t) ;=0A= int mkstemp (char *) ;=0A= int mkstemps (char *, int) ;=0A= char *mktemp (char *) ;=0A= int nfssvc (int, void *) ;=0A= int nice (int) ;=0A= ssize_t pread (int, void *, size_t, off_t) ;=0A= int profil (char *, size_t, vm_offset_t, int) ;=0A= ssize_t pwrite (int, const void *, size_t, off_t) ;=0A= int rcmd (char **, int, const char *,=0A= const char *, const char *, int *) ;=0A= int rcmd_af (char **, int, const char *,=0A= const char *, const char *, int *, int) ;=0A= char *re_comp (const char *) ;=0A= int re_exec (const char *) ;=0A= int readlink (const char *, char *, int) ;=0A= int reboot (int) ;=0A= int revoke (const char *) ;=0A= pid_t rfork (int) ;=0A= int rresvport (int *) ;=0A= int rresvport_af (int *, int) ;=0A= int ruserok (const char *, int, const char *, const char *) ;=0A= char *sbrk (int) ;=0A= int select (int, fd_set *, fd_set *, fd_set *, struct timeval *) ;=0A= int setdomainname (const char *, int) ;=0A= int setegid (gid_t) ;=0A= int seteuid (uid_t) ;=0A= int setgroups (int, const gid_t *) ;=0A= void sethostid (long) ;=0A= int sethostname (const char *, int) ;=0A= int setkey (const char *) ;=0A= int setlogin (const char *) ;=0A= void *setmode (const char *) ;=0A= int setpgrp (pid_t _pid, pid_t _pgrp) ; =0A= int setregid (gid_t, gid_t) ;=0A= int setresgid (gid_t, gid_t, gid_t) ;=0A= int setresuid (uid_t, uid_t, uid_t) ;=0A= int setreuid (uid_t, uid_t) ;=0A= int setrgid (gid_t) ;=0A= int setruid (uid_t) ;=0A= void setusershell (void) ;=0A= int strtofflags (char **, u_long *, u_long *) ;=0A= int swapon (const char *) ;=0A= int symlink (const char *, const char *) ;=0A= void sync (void) ;=0A= int syscall (int, ...) ;=0A= off_t __syscall (quad_t, ...) ;=0A= =0A= =0A= =0A= =0A= int ttyslot (void) ;=0A= unsigned int ualarm (unsigned int, unsigned int) ;=0A= int undelete (const char *) ;=0A= int unwhiteout (const char *) ;=0A= int usleep (unsigned int) ;=0A= void *valloc (size_t) ; =0A= pid_t vfork (void) ;=0A= =0A= extern char *suboptarg; =0A= int getsubopt (char **, char * const *, char **) ;=0A= =0A= extern int optreset; =0A= } =0A= =0A= =0A= # 9 "sim.h" 2=0A= =0A= =0A= # 1 "/usr/include/sys/param.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/syslimits.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 66 "/usr/include/sys/param.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/signal.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef void __sighandler_t (int) ;=0A= =0A= =0A= =0A= =0A= =0A= =0A= union sigval {=0A= =0A= int sigval_int;=0A= void *sigval_ptr;=0A= };=0A= =0A= struct sigevent {=0A= int sigev_notify; =0A= int sigev_signo; =0A= union sigval sigev_value; =0A= };=0A= =0A= =0A= =0A= =0A= typedef struct __siginfo {=0A= int si_signo; =0A= int si_errno; =0A= =0A= =0A= =0A= =0A= =0A= =0A= int si_code; =0A= int si_pid; =0A= unsigned int si_uid; =0A= int si_status; =0A= void *si_addr; =0A= union sigval si_value; =0A= long si_band; =0A= int __spare__[7]; =0A= } siginfo_t;=0A= =0A= =0A= typedef struct __sigset {=0A= unsigned int __bits[4 ];=0A= } sigset_t;=0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/machine/signal.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef int sig_atomic_t;=0A= =0A= =0A= =0A= # 1 "/usr/include/machine/trap.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 48 "/usr/include/machine/signal.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef unsigned int osigset_t;=0A= =0A= struct osigcontext {=0A= int sc_onstack; =0A= osigset_t sc_mask; =0A= int sc_esp; =0A= int sc_ebp;=0A= int sc_isp;=0A= int sc_eip;=0A= int sc_efl;=0A= int sc_es;=0A= int sc_ds;=0A= int sc_cs;=0A= int sc_ss;=0A= int sc_edi;=0A= int sc_esi;=0A= int sc_ebx;=0A= int sc_edx;=0A= int sc_ecx;=0A= int sc_eax;=0A= int sc_gs;=0A= int sc_fs;=0A= int sc_trapno;=0A= int sc_err;=0A= };=0A= =0A= =0A= =0A= =0A= =0A= struct sigcontext {=0A= sigset_t sc_mask; =0A= int sc_onstack; =0A= int sc_gs; =0A= int sc_fs;=0A= int sc_es;=0A= int sc_ds;=0A= int sc_edi;=0A= int sc_esi;=0A= int sc_ebp;=0A= int sc_isp;=0A= int sc_ebx;=0A= int sc_edx;=0A= int sc_ecx;=0A= int sc_eax;=0A= int sc_trapno;=0A= int sc_err;=0A= int sc_eip;=0A= int sc_cs;=0A= int sc_efl;=0A= int sc_esp;=0A= int sc_ss;=0A= =0A= =0A= =0A= =0A= =0A= int sc_fpregs[28]; =0A= int sc_spare[17];=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 171 "/usr/include/sys/signal.h" 2 3=0A= =0A= =0A= =0A= =0A= struct __siginfo;=0A= =0A= =0A= =0A= =0A= struct sigaction {=0A= union {=0A= void (*__sa_handler) (int) ;=0A= void (*__sa_sigaction) (int, struct __siginfo *,=0A= void *) ;=0A= } __sigaction_u; =0A= int sa_flags; =0A= sigset_t sa_mask; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef void __siginfohandler_t (int, struct __siginfo *, void *) ;=0A= =0A= typedef __sighandler_t *sig_t; =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct sigaltstack {=0A= char *ss_sp; =0A= size_t ss_size; =0A= int ss_flags; =0A= } stack_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/ucontext.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/machine/ucontext.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct __mcontext {=0A= =0A= =0A= =0A= =0A= =0A= int mc_onstack; =0A= int mc_gs;=0A= int mc_fs;=0A= int mc_es;=0A= int mc_ds;=0A= int mc_edi;=0A= int mc_esi;=0A= int mc_ebp;=0A= int mc_isp;=0A= int mc_ebx;=0A= int mc_edx;=0A= int mc_ecx;=0A= int mc_eax;=0A= int mc_trapno;=0A= int mc_err;=0A= int mc_eip;=0A= int mc_cs;=0A= int mc_eflags;=0A= int mc_esp; =0A= int mc_ss;=0A= =0A= int mc_fpregs[28]; =0A= int __spare__[17];=0A= } mcontext_t;=0A= =0A= =0A= # 34 "/usr/include/sys/ucontext.h" 2 3=0A= =0A= =0A= typedef struct __ucontext {=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= sigset_t uc_sigmask;=0A= mcontext_t uc_mcontext;=0A= =0A= struct __ucontext *uc_link;=0A= stack_t uc_stack;=0A= int __spare__[8];=0A= } ucontext_t;=0A= =0A= =0A= # 245 "/usr/include/sys/signal.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sigvec {=0A= __sighandler_t *sv_handler; =0A= int sv_mask; =0A= int sv_flags; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sigstack {=0A= char *ss_sp; =0A= int ss_onstack; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= __sighandler_t *signal (int, __sighandler_t *) ;=0A= } =0A= =0A= =0A= # 90 "/usr/include/sys/param.h" 2 3=0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/machine/param.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 94 "/usr/include/sys/param.h" 2 3=0A= =0A= =0A= # 1 "/usr/include/machine/limits.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 96 "/usr/include/sys/param.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 11 "sim.h" 2=0A= =0A= # 1 "/usr/include/fcntl.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 110 "/usr/include/fcntl.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct flock {=0A= off_t l_start; =0A= off_t l_len; =0A= pid_t l_pid; =0A= short l_type; =0A= short l_whence; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int open (const char *, int, ...) ;=0A= int creat (const char *, mode_t) ;=0A= int fcntl (int, int, ...) ;=0A= =0A= int flock (int, int) ;=0A= =0A= } =0A= =0A= =0A= =0A= # 12 "sim.h" 2=0A= =0A= # 1 "/usr/include/errno.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int * __error (void) ;=0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 13 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "MAText/Includes.h" 1=0A= =0A= =0A= # 1 "MAText/pic.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct rasterfile {=0A= long ras_magic;=0A= =0A= long ras_width;=0A= long ras_height;=0A= long ras_depth;=0A= long ras_length;=0A= long ras_type;=0A= =0A= =0A= =0A= =0A= =0A= long ras_maptype;=0A= =0A= =0A= =0A= =0A= long ras_maplength;=0A= };=0A= =0A= struct pixrectops {=0A= int (*pro_rop)();=0A= int (*pro_stencil)();=0A= int (*pro_batchrop)();=0A= int (*pro_nop)();=0A= int (*pro_destroy)();=0A= int (*pro_get)();=0A= int (*pro_put)();=0A= int (*pro_vector)();=0A= struct pixrect *(*pro_region)();=0A= int (*pro_putcolormap)();=0A= int (*pro_getcolormap)();=0A= int (*pro_putattributes)();=0A= int (*pro_getattributes)();=0A= };=0A= =0A= struct pr_size {=0A= int x, y;=0A= };=0A= struct pr_pos {=0A= int x, y;=0A= };=0A= =0A= struct pixrect {=0A= struct pixrectops *pr_ops;=0A= struct pr_size pr_size;=0A= int pr_depth;=0A= struct mpr_data *pr_data; =0A= };=0A= =0A= struct mpr_data {=0A= int md_linebytes;=0A= unsigned char *md_image; =0A= struct pr_pos md_offset;=0A= short md_primary;=0A= short md_flags;=0A= };=0A= =0A= typedef struct {=0A= int type;=0A= int length;=0A= unsigned char *map[3];=0A= } colormap_t;=0A= =0A= =0A= =0A= struct pixrect *mem_create( int w, int h, int depth );=0A= void mem_free( struct pixrect *p );=0A= =0A= int pr_dump( struct pixrect *p, FILE *out, colormap_t *colormap, int = type, int copy_flag );=0A= =0A= int pr_load_header( FILE *in, struct rasterfile *hP );=0A= =0A= int pr_load_colormap( FILE *in, struct rasterfile *hP, colormap_t = *colormap );=0A= =0A= struct pixrect *pr_load_image( FILE *in, struct rasterfile *hP, = colormap_t *colormap );=0A= =0A= struct pixrect *pr_load( FILE *in, colormap_t *colormap);=0A= =0A= colormap_t *alloc_cmap();=0A= =0A= colormap_t *alloc_rgb_cmap(int ncolors);=0A= =0A= colormap_t *alloc_raw_cmap(int ncolors);=0A= =0A= void free_cmap(colormap_t *cmap);=0A= =0A= =0A= # 3 "MAText/Includes.h" 2=0A= =0A= # 1 "MAText/mat.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct M {=0A= int srow; =0A= int scol; =0A= int rows; =0A= int cols; =0A= float **p; =0A= float **nmrp; =0A= } MAT;=0A= =0A= typedef struct M *MATptr;=0A= =0A= =0A= =0A= typedef struct TM {=0A= MATptr L;=0A= MATptr U;=0A= } TMAT;=0A= =0A= typedef struct TM *TMATptr;=0A= =0A= typedef struct {=0A= MATptr values;=0A= MATptr vectors;=0A= } EIGEN;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= void free_MAT(MATptr mat);=0A= =0A= =0A= =0A= MATptr matrix_add_and_free(MATptr m1, MATptr m2, int fm1, int fm2);=0A= =0A= =0A= =0A= MATptr matrix_mult_and_free(MATptr m1, MATptr m2, int fm1, int fm2);=0A= =0A= =0A= =0A= =0A= MATptr m_mult(MATptr a, MATptr b);=0A= =0A= =0A= =0A= void swaprows(float **p, int row1, int row2);=0A= =0A= =0A= =0A= float m_det(MATptr m);=0A= =0A= =0A= =0A= MATptr m_smult(float s, MATptr m);=0A= =0A= =0A= =0A= MATptr m_add(MATptr a, MATptr b);=0A= =0A= =0A= =0A= MATptr m_sub(MATptr a, MATptr b);=0A= =0A= =0A= =0A= MATptr m_adj(MATptr m);=0A= =0A= =0A= =0A= MATptr m_inv(MATptr m);=0A= =0A= =0A= =0A= MATptr m_invp(MATptr m);=0A= =0A= =0A= =0A= TMATptr LU_dec(MATptr m);=0A= =0A= =0A= =0A= =0A= MATptr newmatrix(int row, int column);=0A= =0A= =0A= =0A= =0A= void m_init(MATptr m);=0A= =0A= =0A= =0A= void m_rand(MATptr m);=0A= =0A= =0A= =0A= void m_print(MATptr m);=0A= =0A= =0A= =0A= =0A= MATptr Filled_Matrix(float array[], int rows, int columns);=0A= =0A= =0A= =0A= MATptr RotX(float theta);=0A= =0A= =0A= =0A= MATptr RotY(float theta);=0A= =0A= =0A= =0A= MATptr RotZ(float theta);=0A= =0A= =0A= =0A= MATptr Scale(float Sx, float Sy, float Sz);=0A= =0A= =0A= =0A= MATptr Trans(float t, float u, float v);=0A= =0A= =0A= =0A= MATptr Persp(float f);=0A= =0A= =0A= =0A= void Hdiv(MATptr m);=0A= =0A= =0A= =0A= =0A= struct _array7D {=0A= int l, m, n, o, p, q, r;=0A= float *******array;=0A= };=0A= typedef struct _array7D array7D;=0A= =0A= struct _array6D {=0A= int l, m, n, o, p, q;=0A= float ******array;=0A= };=0A= typedef struct _array6D array6D;=0A= =0A= struct _array5D {=0A= int l, m, n, o, p;=0A= float *****array;=0A= };=0A= typedef struct _array5D array5D;=0A= =0A= struct _array4D {=0A= int l, m, n, o;=0A= float ****array;=0A= };=0A= typedef struct _array4D array4D;=0A= =0A= struct _array3D {=0A= int l, m, n;=0A= float ***array;=0A= };=0A= typedef struct _array3D array3D;=0A= =0A= struct _array2D {=0A= int l, m;=0A= float **array;=0A= };=0A= typedef struct _array2D array2D;=0A= =0A= struct _array1D {=0A= int l;=0A= float *array;=0A= };=0A= typedef struct _array1D array1D;=0A= =0A= array3D *Make3D(size_t l, size_t m, size_t n);=0A= void UnMake3D(array3D *as);=0A= float ***calloc3D(size_t l, size_t m, size_t n);=0A= void free3D(float ***as, size_t l, size_t m, size_t n);=0A= array2D *Make2D(size_t l, size_t m);=0A= void UnMake2D(array2D *as);=0A= float **calloc2D(size_t l, size_t m);=0A= void free2D(float **as, size_t l, size_t m);=0A= array1D *Make1D(size_t l);=0A= void UnMake1D(array1D *as);=0A= float *calloc1D(size_t l);=0A= void free1D(float *as, size_t l);=0A= void Dfree(float *a);=0A= char **calloc2DB(size_t l, size_t m);=0A= char *calloc1DB(size_t l);=0A= void free2DB(char **as, size_t l, size_t m);=0A= void free1DB(char *as, size_t l);=0A= void Bfree(char *a);=0A= =0A= short NullP(void *as);=0A= =0A= =0A= =0A= # 4 "MAText/Includes.h" 2=0A= =0A= =0A= # 19 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/Includes.h" 1=0A= =0A= =0A= # 22 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/Includes.h" 1=0A= =0A= =0A= # 1 "/usr/include/signal.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/time.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct timeval {=0A= long tv_sec; =0A= long tv_usec; =0A= };=0A= =0A= =0A= =0A= struct timespec {=0A= time_t tv_sec; =0A= long tv_nsec; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct timezone {=0A= int tz_minuteswest; =0A= int tz_dsttime; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct timecounter;=0A= typedef unsigned timecounter_get_t (struct timecounter *) ;=0A= typedef void timecounter_pps_t (struct timecounter *) ;=0A= =0A= struct timecounter {=0A= =0A= timecounter_get_t *tc_get_timecount;=0A= timecounter_pps_t *tc_poll_pps;=0A= unsigned tc_counter_mask;=0A= u_int32_t tc_frequency;=0A= char *tc_name;=0A= void *tc_priv;=0A= =0A= int64_t tc_adjustment;=0A= u_int32_t tc_scale_micro;=0A= u_int32_t tc_scale_nano_i;=0A= u_int32_t tc_scale_nano_f;=0A= unsigned tc_offset_count;=0A= u_int32_t tc_offset_sec;=0A= u_int32_t tc_offset_micro;=0A= u_int64_t tc_offset_nano;=0A= struct timeval tc_microtime;=0A= struct timespec tc_nanotime;=0A= struct timecounter *tc_avail;=0A= struct timecounter *tc_other;=0A= struct timecounter *tc_tweak;=0A= };=0A= =0A= # 201 "/usr/include/sys/time.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 220 "/usr/include/sys/time.h" 3=0A= =0A= # 229 "/usr/include/sys/time.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct itimerval {=0A= struct timeval it_interval; =0A= struct timeval it_value; =0A= };=0A= =0A= =0A= =0A= =0A= struct clockinfo {=0A= int hz; =0A= int tick; =0A= int tickadj; =0A= int stathz; =0A= int profhz; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 288 "/usr/include/sys/time.h" 3=0A= =0A= # 1 "/usr/include/time.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct tm {=0A= int tm_sec; =0A= int tm_min; =0A= int tm_hour; =0A= int tm_mday; =0A= int tm_mon; =0A= int tm_year; =0A= int tm_wday; =0A= int tm_yday; =0A= int tm_isdst; =0A= long tm_gmtoff; =0A= char *tm_zone; =0A= };=0A= =0A= =0A= =0A= =0A= extern char *tzname[];=0A= =0A= =0A= extern "C" { =0A= char *asctime (const struct tm *) ;=0A= clock_t clock (void) ;=0A= char *ctime (const time_t *) ;=0A= double difftime (time_t, time_t) ;=0A= struct tm *gmtime (const time_t *) ;=0A= struct tm *localtime (const time_t *) ;=0A= time_t mktime (struct tm *) ;=0A= size_t strftime (char *, size_t, const char *, const struct tm *) ;=0A= time_t time (time_t *) ;=0A= =0A= =0A= void tzset (void) ;=0A= =0A= =0A= =0A= char *asctime_r (const struct tm *, char *) ;=0A= char *ctime_r (const time_t *, char *) ;=0A= struct tm *gmtime_r (const time_t *, struct tm *) ;=0A= struct tm *localtime_r (const time_t *, struct tm *) ;=0A= char *strptime (const char *, const char *, struct tm *) ;=0A= char *timezone (int, int) ;=0A= void tzsetwall (void) ;=0A= time_t timelocal (struct tm * const) ;=0A= time_t timegm (struct tm * const) ;=0A= =0A= =0A= =0A= =0A= int clock_getres (clockid_t, struct timespec *) ;=0A= int clock_gettime (clockid_t, struct timespec *) ;=0A= int clock_settime (clockid_t, const struct timespec *) ;=0A= int nanosleep (const struct timespec *, struct timespec *) ;=0A= =0A= } =0A= =0A= =0A= # 289 "/usr/include/sys/time.h" 2 3=0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int adjtime (const struct timeval *, struct timeval *) ;=0A= int futimes (int, const struct timeval *) ;=0A= int getitimer (int, struct itimerval *) ;=0A= int gettimeofday (struct timeval *, struct timezone *) ;=0A= int lutimes (const char *, const struct timeval *) ;=0A= int setitimer (int, const struct itimerval *, struct itimerval *) ;=0A= int settimeofday (const struct timeval *, const struct timezone *) ;=0A= int utimes (const char *, const struct timeval *) ;=0A= } =0A= =0A= =0A= =0A= =0A= # 45 "/usr/include/signal.h" 2 3=0A= =0A= =0A= =0A= extern const char * const sys_signame[32 ];=0A= extern const char * const sys_siglist[32 ];=0A= extern const int sys_nsig;=0A= =0A= =0A= extern "C" { =0A= int raise (int) ;=0A= =0A= int kill (int , int) ;=0A= int sigaction (int, const struct sigaction *, struct sigaction *) ;=0A= int sigaddset (sigset_t *, int) ;=0A= int sigdelset (sigset_t *, int) ;=0A= int sigemptyset (sigset_t *) ;=0A= int sigfillset (sigset_t *) ;=0A= int sigismember (const sigset_t *, int) ;=0A= int sigpending (sigset_t *) ;=0A= int sigprocmask (int, const sigset_t *, sigset_t *) ;=0A= int sigsuspend (const sigset_t *) ;=0A= int sigwait (const sigset_t *, int *) ;=0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int sigqueue (int , int, const union sigval) ;=0A= int sigtimedwait (const sigset_t *, siginfo_t *, const struct timespec = *) ;=0A= int sigwaitinfo (const sigset_t *, siginfo_t *) ;=0A= } =0A= =0A= =0A= =0A= int killpg (int , int) ;=0A= int sigaltstack (const stack_t *, stack_t *) ; =0A= int sigblock (int) ;=0A= int siginterrupt (int, int) ;=0A= int sigpause (int) ;=0A= int sigreturn (ucontext_t *) ;=0A= int sigsetmask (int) ;=0A= int sigstack (const struct sigstack *, struct sigstack *) ;=0A= int sigvec (int, struct sigvec *, struct sigvec *) ;=0A= void psignal (unsigned int, const char *) ;=0A= =0A= =0A= } =0A= =0A= =0A= # 3 "NEText/Includes.h" 2=0A= =0A= # 1 "/usr/include/sys/wait.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= union wait {=0A= int w_status; =0A= =0A= =0A= =0A= struct {=0A= =0A= unsigned int w_Termsig:7, =0A= w_Coredump:1, =0A= w_Retcode:8, =0A= w_Filler:16; =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= } w_T;=0A= =0A= =0A= =0A= =0A= =0A= struct {=0A= =0A= unsigned int w_Stopval:8, =0A= w_Stopsig:8, =0A= w_Filler:16; =0A= =0A= =0A= =0A= =0A= =0A= =0A= } w_S;=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= struct rusage; =0A= =0A= pid_t wait (int *) ;=0A= pid_t waitpid (pid_t, int *, int) ;=0A= =0A= pid_t wait3 (int *, int, struct rusage *) ;=0A= pid_t wait4 (pid_t, int *, int, struct rusage *) ;=0A= =0A= } =0A= =0A= =0A= =0A= # 4 "NEText/Includes.h" 2=0A= =0A= # 1 "/usr/include/sys/socket.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef u_char sa_family_t;=0A= typedef u_int32_t socklen_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct linger {=0A= int l_onoff; =0A= int l_linger; =0A= };=0A= =0A= struct accept_filter_arg {=0A= char af_name[16];=0A= char af_arg[256-16];=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sockaddr {=0A= u_char sa_len; =0A= sa_family_t sa_family; =0A= char sa_data[14]; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sockproto {=0A= u_short sp_family; =0A= u_short sp_protocol; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sockaddr_storage {=0A= u_char ss_len; =0A= sa_family_t ss_family; =0A= char __ss_pad1[((sizeof(int64_t)) - sizeof(u_char) - = sizeof(sa_family_t)) ];=0A= int64_t __ss_align; =0A= char __ss_pad2[(128 - sizeof(u_char) - sizeof(sa_family_t) - = ((sizeof(int64_t)) - sizeof(u_char) - sizeof(sa_family_t)) - = (sizeof(int64_t)) ) ];=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 272 "/usr/include/sys/socket.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct msghdr {=0A= void *msg_name; =0A= socklen_t msg_namelen; =0A= struct iovec *msg_iov; =0A= int msg_iovlen; =0A= void *msg_control; =0A= socklen_t msg_controllen; =0A= int msg_flags; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct cmsghdr {=0A= socklen_t cmsg_len; =0A= int cmsg_level; =0A= int cmsg_type; =0A= =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct cmsgcred {=0A= pid_t cmcred_pid; =0A= uid_t cmcred_uid; =0A= uid_t cmcred_euid; =0A= gid_t cmcred_gid; =0A= short cmcred_ngroups; =0A= gid_t cmcred_groups[16 ]; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct osockaddr {=0A= u_short sa_family; =0A= char sa_data[14]; =0A= };=0A= =0A= =0A= =0A= =0A= struct omsghdr {=0A= caddr_t msg_name; =0A= int msg_namelen; =0A= struct iovec *msg_iov; =0A= int msg_iovlen; =0A= caddr_t msg_accrights; =0A= int msg_accrightslen;=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sf_hdtr {=0A= struct iovec *headers; =0A= int hdr_cnt; =0A= struct iovec *trailers; =0A= int trl_cnt; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= int accept (int, struct sockaddr *, socklen_t *) ;=0A= int bind (int, const struct sockaddr *, socklen_t) ;=0A= int connect (int, const struct sockaddr *, socklen_t) ;=0A= int getpeername (int, struct sockaddr *, socklen_t *) ;=0A= int getsockname (int, struct sockaddr *, socklen_t *) ;=0A= int getsockopt (int, int, int, void *, socklen_t *) ;=0A= int listen (int, int) ;=0A= ssize_t recv (int, void *, size_t, int) ;=0A= ssize_t recvfrom (int, void *, size_t, int, struct sockaddr *, = socklen_t *) ;=0A= ssize_t recvmsg (int, struct msghdr *, int) ;=0A= ssize_t send (int, const void *, size_t, int) ;=0A= ssize_t sendto (int, const void *,=0A= size_t, int, const struct sockaddr *, socklen_t) ;=0A= ssize_t sendmsg (int, const struct msghdr *, int) ;=0A= int sendfile (int, int, off_t, size_t, struct sf_hdtr *, off_t *, int) = ;=0A= int setsockopt (int, int, int, const void *, socklen_t) ;=0A= int shutdown (int, int) ;=0A= int socket (int, int, int) ;=0A= int socketpair (int, int, int, int *) ;=0A= =0A= void pfctlinput (int, struct sockaddr *) ;=0A= } =0A= =0A= =0A= =0A= =0A= # 5 "NEText/Includes.h" 2=0A= =0A= # 1 "/usr/include/netinet/in.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct in_addr {=0A= u_int32_t s_addr;=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sockaddr_in {=0A= u_char sin_len;=0A= u_char sin_family;=0A= u_short sin_port;=0A= struct in_addr sin_addr;=0A= char sin_zero[8];=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct ip_opts {=0A= struct in_addr ip_dst; =0A= char ip_opts[40]; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct ip_mreq {=0A= struct in_addr imr_multiaddr; =0A= struct in_addr imr_interface; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 431 "/usr/include/netinet/in.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 472 "/usr/include/netinet/in.h" 3=0A= =0A= =0A= =0A= # 1 "/usr/include/netinet6/in6.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/sys/queue.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 168 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 246 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 365 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 382 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 445 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= # 455 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= # 465 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= # 475 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 494 "/usr/include/sys/queue.h" 3=0A= =0A= # 537 "/usr/include/sys/queue.h" 3=0A= =0A= =0A= =0A= # 76 "/usr/include/netinet6/in6.h" 2 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct in6_addr {=0A= union {=0A= u_int8_t __u6_addr8[16];=0A= u_int16_t __u6_addr16[8];=0A= u_int32_t __u6_addr32[4];=0A= } __u6_addr; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct sockaddr_in6 {=0A= u_int8_t sin6_len; =0A= u_int8_t sin6_family; =0A= u_int16_t sin6_port; =0A= u_int32_t sin6_flowinfo; =0A= struct in6_addr sin6_addr; =0A= u_int32_t sin6_scope_id; =0A= };=0A= =0A= =0A= =0A= =0A= # 167 "/usr/include/netinet6/in6.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 200 "/usr/include/netinet6/in6.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern const struct in6_addr in6addr_any;=0A= extern const struct in6_addr in6addr_loopback;=0A= extern const struct in6_addr in6addr_nodelocal_allnodes;=0A= extern const struct in6_addr in6addr_linklocal_allnodes;=0A= extern const struct in6_addr in6addr_linklocal_allrouters;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 334 "/usr/include/netinet6/in6.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct route_in6 {=0A= struct rtentry *ro_rt;=0A= struct sockaddr_in6 ro_dst;=0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct ipv6_mreq {=0A= struct in6_addr ipv6mr_multiaddr;=0A= unsigned int ipv6mr_interface;=0A= };=0A= =0A= =0A= =0A= =0A= struct in6_pktinfo {=0A= struct in6_addr ipi6_addr; =0A= unsigned int ipi6_ifindex; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 502 "/usr/include/netinet6/in6.h" 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 573 "/usr/include/netinet6/in6.h" 3=0A= =0A= =0A= extern "C" { =0A= struct cmsghdr;=0A= =0A= extern int inet6_option_space (int) ;=0A= extern int inet6_option_init (void *, struct cmsghdr **, int) ;=0A= extern int inet6_option_append (struct cmsghdr *, const u_int8_t *,=0A= int, int) ;=0A= extern u_int8_t *inet6_option_alloc (struct cmsghdr *, int, int, int) ;=0A= extern int inet6_option_next (const struct cmsghdr *, u_int8_t **) ;=0A= extern int inet6_option_find (const struct cmsghdr *, u_int8_t **,=0A= int) ;=0A= =0A= extern size_t inet6_rthdr_space (int, int) ;=0A= extern struct cmsghdr *inet6_rthdr_init (void *, int) ;=0A= extern int inet6_rthdr_add (struct cmsghdr *, const struct in6_addr *,=0A= u_int) ;=0A= extern int inet6_rthdr_lasthop (struct cmsghdr *, u_int) ;=0A= extern int inet6_rthdr_segments (const struct cmsghdr *) ;=0A= extern struct in6_addr *inet6_rthdr_getaddr (struct cmsghdr *, int) ;=0A= extern int inet6_rthdr_getflags (const struct cmsghdr *, int) ;=0A= extern int inet6_rthdr_reverse (const struct cmsghdr *,=0A= struct cmsghdr *) ;=0A= } =0A= =0A= =0A= # 475 "/usr/include/netinet/in.h" 2 3=0A= =0A= =0A= =0A= # 491 "/usr/include/netinet/in.h" 3=0A= =0A= =0A= =0A= # 6 "NEText/Includes.h" 2=0A= =0A= # 1 "/usr/include/netdb.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern int h_errno;=0A= =0A= =0A= =0A= =0A= =0A= =0A= struct hostent {=0A= char *h_name; =0A= char **h_aliases; =0A= int h_addrtype; =0A= int h_length; =0A= char **h_addr_list; =0A= =0A= };=0A= =0A= =0A= =0A= =0A= =0A= struct netent {=0A= char *n_name; =0A= char **n_aliases; =0A= int n_addrtype; =0A= unsigned long n_net; =0A= };=0A= =0A= struct servent {=0A= char *s_name; =0A= char **s_aliases; =0A= int s_port; =0A= char *s_proto; =0A= };=0A= =0A= struct protoent {=0A= char *p_name; =0A= char **p_aliases; =0A= int p_proto; =0A= };=0A= =0A= struct addrinfo {=0A= int ai_flags; =0A= int ai_family; =0A= int ai_socktype; =0A= int ai_protocol; =0A= size_t ai_addrlen; =0A= char *ai_canonname; =0A= struct sockaddr *ai_addr; =0A= struct addrinfo *ai_next; =0A= };=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= void endhostent (void) ;=0A= void endnetent (void) ;=0A= void endprotoent (void) ;=0A= void endservent (void) ;=0A= void freehostent (struct hostent *) ;=0A= struct hostent *gethostbyaddr (const char *, int, int) ;=0A= struct hostent *gethostbyname (const char *) ;=0A= struct hostent *gethostbyname2 (const char *, int) ;=0A= struct hostent *gethostent (void) ;=0A= struct hostent *getipnodebyaddr (const void *, size_t, int, int *) ;=0A= struct hostent *getipnodebyname (const char *, int, int, int *) ;=0A= struct netent *getnetbyaddr (unsigned long, int) ;=0A= struct netent *getnetbyname (const char *) ;=0A= struct netent *getnetent (void) ;=0A= struct protoent *getprotobyname (const char *) ;=0A= struct protoent *getprotobynumber (int) ;=0A= struct protoent *getprotoent (void) ;=0A= struct servent *getservbyname (const char *, const char *) ;=0A= struct servent *getservbyport (int, const char *) ;=0A= struct servent *getservent (void) ;=0A= void herror (const char *) ;=0A= const char *hstrerror (int) ;=0A= void sethostent (int) ;=0A= =0A= void setnetent (int) ;=0A= void setprotoent (int) ;=0A= int getaddrinfo (const char *, const char *,=0A= const struct addrinfo *, struct addrinfo **) ;=0A= int getnameinfo (const struct sockaddr *, size_t, char *,=0A= size_t, char *, size_t, int) ;=0A= void freeaddrinfo (struct addrinfo *) ;=0A= char *gai_strerror (int) ;=0A= void setservent (int) ;=0A= =0A= =0A= =0A= =0A= =0A= =0A= void _sethosthtent (int) ;=0A= void _endhosthtent (void) ;=0A= void _sethostdnsent (int) ;=0A= void _endhostdnsent (void) ;=0A= void _setnethtent (int) ;=0A= void _endnethtent (void) ;=0A= void _setnetdnsent (int) ;=0A= void _endnetdnsent (void) ;=0A= struct hostent * _gethostbyhtname (const char *, int) ;=0A= struct hostent * _gethostbydnsname (const char *, int) ;=0A= struct hostent * _gethostbynisname (const char *, int) ;=0A= struct hostent * _gethostbyhtaddr (const char *, int, int) ;=0A= struct hostent * _gethostbydnsaddr (const char *, int, int) ;=0A= struct hostent * _gethostbynisaddr (const char *, int, int) ;=0A= struct netent * _getnetbyhtname (const char *) ;=0A= struct netent * _getnetbydnsname (const char *) ;=0A= struct netent * _getnetbynisname (const char *) ;=0A= struct netent * _getnetbyhtaddr (unsigned long, int) ;=0A= struct netent * _getnetbydnsaddr (unsigned long, int) ;=0A= struct netent * _getnetbynisaddr (unsigned long, int) ;=0A= void _map_v4v6_address (const char *src, char *dst) ;=0A= void _map_v4v6_hostent (struct hostent *hp, char **bp, int *len) ;=0A= } =0A= =0A= =0A= # 7 "NEText/Includes.h" 2=0A= =0A= =0A= # 25 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/Includes.h" 1=0A= =0A= =0A= # 1 "Xext/XDefs.h" 1=0A= # 1 "/usr/X11R6/include/X11/Xlib.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/X11R6/include/X11/X.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef unsigned long XID;=0A= typedef unsigned long Mask;=0A= typedef unsigned long Atom;=0A= typedef unsigned long VisualID;=0A= typedef unsigned long Time;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef XID Window;=0A= typedef XID Drawable;=0A= typedef XID Font;=0A= typedef XID Pixmap;=0A= typedef XID Cursor;=0A= typedef XID Colormap;=0A= typedef XID GContext;=0A= typedef XID KeySym;=0A= =0A= typedef unsigned char KeyCode;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 345 "/usr/X11R6/include/X11/X.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 56 "/usr/X11R6/include/X11/Xlib.h" 2=0A= =0A= =0A= =0A= # 1 "/usr/X11R6/include/X11/Xfuncproto.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 59 "/usr/X11R6/include/X11/Xlib.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/Xosdefs.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 94 "/usr/X11R6/include/X11/Xosdefs.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 60 "/usr/X11R6/include/X11/Xlib.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/include/stddef.h" 1 3=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef int ptrdiff_t;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 73 "/usr/X11R6/include/X11/Xlib.h" 2=0A= =0A= # 86 "/usr/X11R6/include/X11/Xlib.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef char *XPointer;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XExtData {=0A= int number; =0A= struct _XExtData *next; =0A= int (*free_private)( =0A= =0A= struct _XExtData *extension=0A= =0A= );=0A= XPointer private_data; =0A= } XExtData;=0A= =0A= =0A= =0A= =0A= typedef struct { =0A= int extension; =0A= int major_opcode; =0A= int first_event; =0A= int first_error; =0A= } XExtCodes;=0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int depth;=0A= int bits_per_pixel;=0A= int scanline_pad;=0A= } XPixmapFormatValues;=0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int function; =0A= unsigned long plane_mask; =0A= unsigned long foreground; =0A= unsigned long background; =0A= int line_width; =0A= int line_style; =0A= int cap_style; =0A= =0A= int join_style; =0A= int fill_style; =0A= =0A= int fill_rule; =0A= int arc_mode; =0A= Pixmap tile; =0A= Pixmap stipple; =0A= int ts_x_origin; =0A= int ts_y_origin;=0A= Font font; =0A= int subwindow_mode; =0A= int graphics_exposures; =0A= int clip_x_origin; =0A= int clip_y_origin;=0A= Pixmap clip_mask; =0A= int dash_offset; =0A= char dashes;=0A= } XGCValues;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XGC=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= *GC;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= XExtData *ext_data; =0A= VisualID visualid; =0A= =0A= int c_class; =0A= =0A= =0A= =0A= unsigned long red_mask, green_mask, blue_mask; =0A= int bits_per_rgb; =0A= int map_entries; =0A= } Visual;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int depth; =0A= int nvisuals; =0A= Visual *visuals; =0A= } Depth;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= struct _XDisplay; =0A= =0A= typedef struct {=0A= XExtData *ext_data; =0A= struct _XDisplay *display; =0A= Window root; =0A= int width, height; =0A= int mwidth, mheight; =0A= int ndepths; =0A= Depth *depths; =0A= int root_depth; =0A= Visual *root_visual; =0A= GC default_gc; =0A= Colormap cmap; =0A= unsigned long white_pixel;=0A= unsigned long black_pixel; =0A= int max_maps, min_maps; =0A= int backing_store; =0A= int save_unders; =0A= long root_input_mask; =0A= } Screen;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= XExtData *ext_data; =0A= int depth; =0A= int bits_per_pixel; =0A= int scanline_pad; =0A= } ScreenFormat;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= Pixmap background_pixmap; =0A= unsigned long background_pixel; =0A= Pixmap border_pixmap; =0A= unsigned long border_pixel; =0A= int bit_gravity; =0A= int win_gravity; =0A= int backing_store; =0A= unsigned long backing_planes; =0A= unsigned long backing_pixel; =0A= int save_under; =0A= long event_mask; =0A= long do_not_propagate_mask; =0A= int override_redirect; =0A= Colormap colormap; =0A= Cursor cursor; =0A= } XSetWindowAttributes;=0A= =0A= typedef struct {=0A= int x, y; =0A= int width, height; =0A= int border_width; =0A= int depth; =0A= Visual *visual; =0A= Window root; =0A= =0A= int c_class; =0A= =0A= =0A= =0A= int bit_gravity; =0A= int win_gravity; =0A= int backing_store; =0A= unsigned long backing_planes; =0A= unsigned long backing_pixel; =0A= int save_under; =0A= Colormap colormap; =0A= int map_installed; =0A= int map_state; =0A= long all_event_masks; =0A= long your_event_mask; =0A= long do_not_propagate_mask; =0A= int override_redirect; =0A= Screen *screen; =0A= } XWindowAttributes;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int family; =0A= int length; =0A= char *address; =0A= } XHostAddress;=0A= =0A= =0A= =0A= =0A= typedef struct _XImage {=0A= int width, height; =0A= int xoffset; =0A= int format; =0A= char *data; =0A= int byte_order; =0A= int bitmap_unit; =0A= int bitmap_bit_order; =0A= int bitmap_pad; =0A= int depth; =0A= int bytes_per_line; =0A= int bits_per_pixel; =0A= unsigned long red_mask; =0A= unsigned long green_mask;=0A= unsigned long blue_mask;=0A= XPointer obdata; =0A= struct funcs { =0A= =0A= struct _XImage *(*create_image)(=0A= struct _XDisplay* ,=0A= Visual* ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= char* ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int );=0A= int (*destroy_image) (struct _XImage *);=0A= unsigned long (*get_pixel) (struct _XImage *, int, int);=0A= int (*put_pixel) (struct _XImage *, int, int, unsigned long);=0A= struct _XImage *(*sub_image)(struct _XImage *, int, int, unsigned int, = unsigned int);=0A= int (*add_pixel) (struct _XImage *, long);=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= } f;=0A= } XImage;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int x, y;=0A= int width, height;=0A= int border_width;=0A= Window sibling;=0A= int stack_mode;=0A= } XWindowChanges;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= unsigned long pixel;=0A= unsigned short red, green, blue;=0A= char flags; =0A= char pad;=0A= } XColor;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= short x1, y1, x2, y2;=0A= } XSegment;=0A= =0A= typedef struct {=0A= short x, y;=0A= } XPoint;=0A= =0A= typedef struct {=0A= short x, y;=0A= unsigned short width, height;=0A= } XRectangle;=0A= =0A= typedef struct {=0A= short x, y;=0A= unsigned short width, height;=0A= short angle1, angle2;=0A= } XArc;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int key_click_percent;=0A= int bell_percent;=0A= int bell_pitch;=0A= int bell_duration;=0A= int led;=0A= int led_mode;=0A= int key;=0A= int auto_repeat_mode; =0A= } XKeyboardControl;=0A= =0A= =0A= =0A= typedef struct {=0A= int key_click_percent;=0A= int bell_percent;=0A= unsigned int bell_pitch, bell_duration;=0A= unsigned long led_mask;=0A= int global_auto_repeat;=0A= char auto_repeats[32];=0A= } XKeyboardState;=0A= =0A= =0A= =0A= typedef struct {=0A= Time time;=0A= short x, y;=0A= } XTimeCoord;=0A= =0A= =0A= =0A= typedef struct {=0A= int max_keypermod; =0A= KeyCode *modifiermap; =0A= } XModifierKeymap;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XDisplay Display;=0A= =0A= =0A= struct _XPrivate; =0A= struct _XrmHashBucketRec;=0A= =0A= typedef struct =0A= =0A= =0A= =0A= {=0A= XExtData *ext_data; =0A= struct _XPrivate *private1;=0A= int fd; =0A= int private2;=0A= int proto_major_version; =0A= int proto_minor_version; =0A= char *vendor; =0A= XID private3;=0A= XID private4;=0A= XID private5;=0A= int private6;=0A= XID (*resource_alloc)( =0A= =0A= struct _XDisplay*=0A= =0A= );=0A= int byte_order; =0A= int bitmap_unit; =0A= int bitmap_pad; =0A= int bitmap_bit_order; =0A= int nformats; =0A= ScreenFormat *pixmap_format; =0A= int private8;=0A= int release; =0A= struct _XPrivate *private9, *private10;=0A= int qlen; =0A= unsigned long last_request_read; =0A= unsigned long request; =0A= XPointer private11;=0A= XPointer private12;=0A= XPointer private13;=0A= XPointer private14;=0A= unsigned max_request_size; =0A= struct _XrmHashBucketRec *db;=0A= int (*private15)(=0A= =0A= struct _XDisplay*=0A= =0A= );=0A= char *display_name; =0A= int default_screen; =0A= int nscreens; =0A= Screen *screens; =0A= unsigned long motion_buffer; =0A= unsigned long private16;=0A= int min_keycode; =0A= int max_keycode; =0A= XPointer private17;=0A= XPointer private18;=0A= int private19;=0A= char *xdefaults; =0A= =0A= }=0A= =0A= =0A= =0A= *_XPrivDisplay;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int type; =0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window; =0A= Window root; =0A= Window subwindow; =0A= Time time; =0A= int x, y; =0A= int x_root, y_root; =0A= unsigned int state; =0A= unsigned int keycode; =0A= int same_screen; =0A= } XKeyEvent;=0A= typedef XKeyEvent XKeyPressedEvent;=0A= typedef XKeyEvent XKeyReleasedEvent;=0A= =0A= typedef struct {=0A= int type; =0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window; =0A= Window root; =0A= Window subwindow; =0A= Time time; =0A= int x, y; =0A= int x_root, y_root; =0A= unsigned int state; =0A= unsigned int button; =0A= int same_screen; =0A= } XButtonEvent;=0A= typedef XButtonEvent XButtonPressedEvent;=0A= typedef XButtonEvent XButtonReleasedEvent;=0A= =0A= typedef struct {=0A= int type; =0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window; =0A= Window root; =0A= Window subwindow; =0A= Time time; =0A= int x, y; =0A= int x_root, y_root; =0A= unsigned int state; =0A= char is_hint; =0A= int same_screen; =0A= } XMotionEvent;=0A= typedef XMotionEvent XPointerMovedEvent;=0A= =0A= typedef struct {=0A= int type; =0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window; =0A= Window root; =0A= Window subwindow; =0A= Time time; =0A= int x, y; =0A= int x_root, y_root; =0A= int mode; =0A= int detail;=0A= =0A= =0A= =0A= =0A= int same_screen; =0A= int focus; =0A= unsigned int state; =0A= } XCrossingEvent;=0A= typedef XCrossingEvent XEnterWindowEvent;=0A= typedef XCrossingEvent XLeaveWindowEvent;=0A= =0A= typedef struct {=0A= int type; =0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window; =0A= int mode; =0A= int detail;=0A= =0A= =0A= =0A= =0A= =0A= } XFocusChangeEvent;=0A= typedef XFocusChangeEvent XFocusInEvent;=0A= typedef XFocusChangeEvent XFocusOutEvent;=0A= =0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= char key_vector[32];=0A= } XKeymapEvent; =0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= int x, y;=0A= int width, height;=0A= int count; =0A= } XExposeEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Drawable drawable;=0A= int x, y;=0A= int width, height;=0A= int count; =0A= int major_code; =0A= int minor_code; =0A= } XGraphicsExposeEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Drawable drawable;=0A= int major_code; =0A= int minor_code; =0A= } XNoExposeEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= int state; =0A= } XVisibilityEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window parent; =0A= Window window; =0A= int x, y; =0A= int width, height; =0A= int border_width; =0A= int override_redirect; =0A= } XCreateWindowEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window event;=0A= Window window;=0A= } XDestroyWindowEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window event;=0A= Window window;=0A= int from_configure;=0A= } XUnmapEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window event;=0A= Window window;=0A= int override_redirect; =0A= } XMapEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window parent;=0A= Window window;=0A= } XMapRequestEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window event;=0A= Window window;=0A= Window parent;=0A= int x, y;=0A= int override_redirect;=0A= } XReparentEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window event;=0A= Window window;=0A= int x, y;=0A= int width, height;=0A= int border_width;=0A= Window above;=0A= int override_redirect;=0A= } XConfigureEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window event;=0A= Window window;=0A= int x, y;=0A= } XGravityEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= int width, height;=0A= } XResizeRequestEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window parent;=0A= Window window;=0A= int x, y;=0A= int width, height;=0A= int border_width;=0A= Window above;=0A= int detail; =0A= unsigned long value_mask;=0A= } XConfigureRequestEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window event;=0A= Window window;=0A= int place; =0A= } XCirculateEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window parent;=0A= Window window;=0A= int place; =0A= } XCirculateRequestEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= Atom atom;=0A= Time time;=0A= int state; =0A= } XPropertyEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= Atom selection;=0A= Time time;=0A= } XSelectionClearEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window owner;=0A= Window requestor;=0A= Atom selection;=0A= Atom target;=0A= Atom property;=0A= Time time;=0A= } XSelectionRequestEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window requestor;=0A= Atom selection;=0A= Atom target;=0A= Atom property; =0A= Time time;=0A= } XSelectionEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= Colormap colormap; =0A= =0A= int c_new; =0A= =0A= =0A= =0A= int state; =0A= } XColormapEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window;=0A= Atom message_type;=0A= int format;=0A= union {=0A= char b[20];=0A= short s[10];=0A= long l[5];=0A= } data;=0A= } XClientMessageEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window; =0A= int request; =0A= =0A= int first_keycode; =0A= int count; =0A= } XMappingEvent;=0A= =0A= typedef struct {=0A= int type;=0A= Display *display; =0A= XID resourceid; =0A= unsigned long serial; =0A= unsigned char error_code; =0A= unsigned char request_code; =0A= unsigned char minor_code; =0A= } XErrorEvent;=0A= =0A= typedef struct {=0A= int type;=0A= unsigned long serial; =0A= int send_event; =0A= Display *display; =0A= Window window; =0A= } XAnyEvent;=0A= =0A= =0A= =0A= =0A= =0A= typedef union _XEvent {=0A= int type; =0A= XAnyEvent xany;=0A= XKeyEvent xkey;=0A= XButtonEvent xbutton;=0A= XMotionEvent xmotion;=0A= XCrossingEvent xcrossing;=0A= XFocusChangeEvent xfocus;=0A= XExposeEvent xexpose;=0A= XGraphicsExposeEvent xgraphicsexpose;=0A= XNoExposeEvent xnoexpose;=0A= XVisibilityEvent xvisibility;=0A= XCreateWindowEvent xcreatewindow;=0A= XDestroyWindowEvent xdestroywindow;=0A= XUnmapEvent xunmap;=0A= XMapEvent xmap;=0A= XMapRequestEvent xmaprequest;=0A= XReparentEvent xreparent;=0A= XConfigureEvent xconfigure;=0A= XGravityEvent xgravity;=0A= XResizeRequestEvent xresizerequest;=0A= XConfigureRequestEvent xconfigurerequest;=0A= XCirculateEvent xcirculate;=0A= XCirculateRequestEvent xcirculaterequest;=0A= XPropertyEvent xproperty;=0A= XSelectionClearEvent xselectionclear;=0A= XSelectionRequestEvent xselectionrequest;=0A= XSelectionEvent xselection;=0A= XColormapEvent xcolormap;=0A= XClientMessageEvent xclient;=0A= XMappingEvent xmapping;=0A= XErrorEvent xerror;=0A= XKeymapEvent xkeymap;=0A= long pad[24];=0A= } XEvent;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= short lbearing; =0A= short rbearing; =0A= short width; =0A= short ascent; =0A= short descent; =0A= unsigned short attributes; =0A= } XCharStruct;=0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= Atom name;=0A= unsigned long card32;=0A= } XFontProp;=0A= =0A= typedef struct {=0A= XExtData *ext_data; =0A= Font fid; =0A= unsigned direction; =0A= unsigned min_char_or_byte2; =0A= unsigned max_char_or_byte2; =0A= unsigned min_byte1; =0A= unsigned max_byte1; =0A= int all_chars_exist; =0A= unsigned default_char; =0A= int n_properties; =0A= XFontProp *properties; =0A= XCharStruct min_bounds; =0A= XCharStruct max_bounds; =0A= XCharStruct *per_char; =0A= int ascent; =0A= int descent; =0A= } XFontStruct;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= char *chars; =0A= int nchars; =0A= int delta; =0A= Font font; =0A= } XTextItem;=0A= =0A= typedef struct { =0A= unsigned char byte1;=0A= unsigned char byte2;=0A= } XChar2b;=0A= =0A= typedef struct {=0A= XChar2b *chars; =0A= int nchars; =0A= int delta; =0A= Font font; =0A= } XTextItem16;=0A= =0A= =0A= typedef union { Display *display;=0A= GC gc;=0A= Visual *visual;=0A= Screen *screen;=0A= ScreenFormat *pixmap_format;=0A= XFontStruct *font; } XEDataObject;=0A= =0A= typedef struct {=0A= XRectangle max_ink_extent;=0A= XRectangle max_logical_extent;=0A= } XFontSetExtents;=0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XOM *XOM;=0A= typedef struct _XOC *XOC, *XFontSet;=0A= =0A= typedef struct {=0A= char *chars;=0A= int nchars;=0A= int delta;=0A= XFontSet font_set;=0A= } XmbTextItem;=0A= =0A= typedef struct {=0A= wchar_t *chars;=0A= int nchars;=0A= int delta;=0A= XFontSet font_set;=0A= } XwcTextItem;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int charset_count;=0A= char **charset_list;=0A= } XOMCharSetList;=0A= =0A= typedef enum {=0A= XOMOrientation_LTR_TTB,=0A= XOMOrientation_RTL_TTB,=0A= XOMOrientation_TTB_LTR,=0A= XOMOrientation_TTB_RTL,=0A= XOMOrientation_Context=0A= } XOrientation;=0A= =0A= typedef struct {=0A= int num_orientation;=0A= XOrientation *orientation; =0A= } XOMOrientation;=0A= =0A= typedef struct {=0A= int num_font;=0A= XFontStruct **font_struct_list;=0A= char **font_name_list;=0A= } XOMFontInfo;=0A= =0A= typedef struct _XIM *XIM;=0A= typedef struct _XIC *XIC;=0A= =0A= typedef void (*XIMProc)(=0A= =0A= XIM,=0A= XPointer,=0A= XPointer=0A= =0A= );=0A= =0A= typedef int (*XICProc)(=0A= =0A= XIC,=0A= XPointer,=0A= XPointer=0A= =0A= );=0A= =0A= typedef void (*XIDProc)(=0A= =0A= Display*,=0A= XPointer,=0A= XPointer=0A= =0A= );=0A= =0A= typedef unsigned long XIMStyle;=0A= =0A= typedef struct {=0A= unsigned short count_styles;=0A= XIMStyle *supported_styles;=0A= } XIMStyles;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef void *XVaNestedList;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= XPointer client_data;=0A= XIMProc callback;=0A= } XIMCallback;=0A= =0A= typedef struct {=0A= XPointer client_data;=0A= XICProc callback;=0A= } XICCallback;=0A= =0A= typedef unsigned long XIMFeedback;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XIMText {=0A= unsigned short length;=0A= XIMFeedback *feedback;=0A= int encoding_is_wchar; =0A= union {=0A= char *multi_byte;=0A= wchar_t *wide_char;=0A= } string; =0A= } XIMText;=0A= =0A= typedef unsigned long XIMPreeditState;=0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XIMPreeditStateNotifyCallbackStruct {=0A= XIMPreeditState state;=0A= } XIMPreeditStateNotifyCallbackStruct;=0A= =0A= typedef unsigned long XIMResetState;=0A= =0A= =0A= =0A= =0A= typedef unsigned long XIMStringConversionFeedback;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XIMStringConversionText {=0A= unsigned short length;=0A= XIMStringConversionFeedback *feedback;=0A= int encoding_is_wchar; =0A= union {=0A= char *mbs;=0A= wchar_t *wcs;=0A= } string; =0A= } XIMStringConversionText;=0A= =0A= typedef unsigned short XIMStringConversionPosition;=0A= =0A= typedef unsigned short XIMStringConversionType;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef unsigned short XIMStringConversionOperation;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef enum {=0A= XIMForwardChar, XIMBackwardChar,=0A= XIMForwardWord, XIMBackwardWord,=0A= XIMCaretUp, XIMCaretDown,=0A= XIMNextLine, XIMPreviousLine,=0A= XIMLineStart, XIMLineEnd, =0A= XIMAbsolutePosition,=0A= XIMDontChange=0A= } XIMCaretDirection;=0A= =0A= typedef struct _XIMStringConversionCallbackStruct {=0A= XIMStringConversionPosition position;=0A= XIMCaretDirection direction;=0A= XIMStringConversionOperation operation;=0A= unsigned short factor;=0A= XIMStringConversionText *text;=0A= } XIMStringConversionCallbackStruct;=0A= =0A= typedef struct _XIMPreeditDrawCallbackStruct {=0A= int caret; =0A= int chg_first; =0A= int chg_length; =0A= XIMText *text;=0A= } XIMPreeditDrawCallbackStruct;=0A= =0A= typedef enum {=0A= XIMIsInvisible, =0A= XIMIsPrimary, =0A= XIMIsSecondary =0A= } XIMCaretStyle;=0A= =0A= typedef struct _XIMPreeditCaretCallbackStruct {=0A= int position; =0A= XIMCaretDirection direction; =0A= XIMCaretStyle style; =0A= } XIMPreeditCaretCallbackStruct;=0A= =0A= typedef enum {=0A= XIMTextType,=0A= XIMBitmapType=0A= } XIMStatusDataType;=0A= =0A= typedef struct _XIMStatusDrawCallbackStruct {=0A= XIMStatusDataType type;=0A= union {=0A= XIMText *text;=0A= Pixmap bitmap;=0A= } data;=0A= } XIMStatusDrawCallbackStruct;=0A= =0A= typedef struct _XIMHotKeyTrigger {=0A= KeySym keysym;=0A= int modifier;=0A= int modifier_mask;=0A= } XIMHotKeyTrigger;=0A= =0A= typedef struct _XIMHotKeyTriggers {=0A= int num_hot_key;=0A= XIMHotKeyTrigger *key;=0A= } XIMHotKeyTriggers;=0A= =0A= typedef unsigned long XIMHotKeyState;=0A= =0A= =0A= =0A= =0A= typedef struct {=0A= unsigned short count_values;=0A= char **supported_values;=0A= } XIMValuesList;=0A= =0A= extern "C" { =0A= =0A= =0A= =0A= =0A= =0A= extern int _Xdebug;=0A= =0A= extern XFontStruct *XLoadQueryFont(=0A= =0A= Display* ,=0A= const char* =0A= =0A= );=0A= =0A= extern XFontStruct *XQueryFont(=0A= =0A= Display* ,=0A= XID =0A= =0A= );=0A= =0A= =0A= extern XTimeCoord *XGetMotionEvents(=0A= =0A= Display* ,=0A= Window ,=0A= Time ,=0A= Time ,=0A= int* =0A= =0A= );=0A= =0A= extern XModifierKeymap *XDeleteModifiermapEntry(=0A= =0A= XModifierKeymap* ,=0A= =0A= =0A= =0A= KeyCode ,=0A= =0A= int =0A= =0A= );=0A= =0A= extern XModifierKeymap *XGetModifierMapping(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern XModifierKeymap *XInsertModifiermapEntry(=0A= =0A= XModifierKeymap* ,=0A= =0A= =0A= =0A= KeyCode ,=0A= =0A= int =0A= =0A= );=0A= =0A= extern XModifierKeymap *XNewModifiermap(=0A= =0A= int =0A= =0A= );=0A= =0A= extern XImage *XCreateImage(=0A= =0A= Display* ,=0A= Visual* ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= char* ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int =0A= =0A= );=0A= extern int XInitImage(=0A= =0A= XImage* =0A= =0A= );=0A= extern XImage *XGetImage(=0A= =0A= Display* ,=0A= Drawable ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned long ,=0A= int =0A= =0A= );=0A= extern XImage *XGetSubImage(=0A= =0A= Display* ,=0A= Drawable ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned long ,=0A= int ,=0A= XImage* ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= =0A= =0A= =0A= extern Display *XOpenDisplay(=0A= =0A= const char* =0A= =0A= );=0A= =0A= extern void XrmInitialize(=0A= =0A= void=0A= =0A= );=0A= =0A= extern char *XFetchBytes(=0A= =0A= Display* ,=0A= int* =0A= =0A= );=0A= extern char *XFetchBuffer(=0A= =0A= Display* ,=0A= int* ,=0A= int =0A= =0A= );=0A= extern char *XGetAtomName(=0A= =0A= Display* ,=0A= Atom =0A= =0A= );=0A= extern int XGetAtomNames(=0A= =0A= Display* ,=0A= Atom* ,=0A= int ,=0A= char** =0A= =0A= );=0A= extern char *XGetDefault(=0A= =0A= Display* ,=0A= const char* ,=0A= const char* =0A= =0A= );=0A= extern char *XDisplayName(=0A= =0A= const char* =0A= =0A= );=0A= extern char *XKeysymToString(=0A= =0A= KeySym =0A= =0A= );=0A= =0A= extern int (*XSynchronize(=0A= =0A= Display* ,=0A= int =0A= =0A= ))(=0A= =0A= Display* =0A= =0A= );=0A= extern int (*XSetAfterFunction(=0A= =0A= Display* ,=0A= int (*) (=0A= =0A= Display* =0A= =0A= ) =0A= =0A= ))(=0A= =0A= Display* =0A= =0A= );=0A= extern Atom XInternAtom(=0A= =0A= Display* ,=0A= const char* ,=0A= int =0A= =0A= );=0A= extern int XInternAtoms(=0A= =0A= Display* ,=0A= char** ,=0A= int ,=0A= int ,=0A= Atom* =0A= =0A= );=0A= extern Colormap XCopyColormapAndFree(=0A= =0A= Display* ,=0A= Colormap =0A= =0A= );=0A= extern Colormap XCreateColormap(=0A= =0A= Display* ,=0A= Window ,=0A= Visual* ,=0A= int =0A= =0A= );=0A= extern Cursor XCreatePixmapCursor(=0A= =0A= Display* ,=0A= Pixmap ,=0A= Pixmap ,=0A= XColor* ,=0A= XColor* ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= extern Cursor XCreateGlyphCursor(=0A= =0A= Display* ,=0A= Font ,=0A= Font ,=0A= unsigned int ,=0A= unsigned int ,=0A= XColor* ,=0A= XColor* =0A= =0A= );=0A= extern Cursor XCreateFontCursor(=0A= =0A= Display* ,=0A= unsigned int =0A= =0A= );=0A= extern Font XLoadFont(=0A= =0A= Display* ,=0A= const char* =0A= =0A= );=0A= extern GC XCreateGC(=0A= =0A= Display* ,=0A= Drawable ,=0A= unsigned long ,=0A= XGCValues* =0A= =0A= );=0A= extern GContext XGContextFromGC(=0A= =0A= GC =0A= =0A= );=0A= extern void XFlushGC(=0A= =0A= Display* ,=0A= GC =0A= =0A= );=0A= extern Pixmap XCreatePixmap(=0A= =0A= Display* ,=0A= Drawable ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= extern Pixmap XCreateBitmapFromData(=0A= =0A= Display* ,=0A= Drawable ,=0A= const char* ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= extern Pixmap XCreatePixmapFromBitmapData(=0A= =0A= Display* ,=0A= Drawable ,=0A= char* ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned long ,=0A= unsigned long ,=0A= unsigned int =0A= =0A= );=0A= extern Window XCreateSimpleWindow(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned long ,=0A= unsigned long =0A= =0A= );=0A= extern Window XGetSelectionOwner(=0A= =0A= Display* ,=0A= Atom =0A= =0A= );=0A= extern Window XCreateWindow(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= unsigned int ,=0A= Visual* ,=0A= unsigned long ,=0A= XSetWindowAttributes* =0A= =0A= ); =0A= extern Colormap *XListInstalledColormaps(=0A= =0A= Display* ,=0A= Window ,=0A= int* =0A= =0A= );=0A= extern char **XListFonts(=0A= =0A= Display* ,=0A= const char* ,=0A= int ,=0A= int* =0A= =0A= );=0A= extern char **XListFontsWithInfo(=0A= =0A= Display* ,=0A= const char* ,=0A= int ,=0A= int* ,=0A= XFontStruct** =0A= =0A= );=0A= extern char **XGetFontPath(=0A= =0A= Display* ,=0A= int* =0A= =0A= );=0A= extern char **XListExtensions(=0A= =0A= Display* ,=0A= int* =0A= =0A= );=0A= extern Atom *XListProperties(=0A= =0A= Display* ,=0A= Window ,=0A= int* =0A= =0A= );=0A= extern XHostAddress *XListHosts(=0A= =0A= Display* ,=0A= int* ,=0A= int * =0A= =0A= );=0A= extern KeySym XKeycodeToKeysym(=0A= =0A= Display* ,=0A= =0A= =0A= =0A= KeyCode ,=0A= =0A= int =0A= =0A= );=0A= extern KeySym XLookupKeysym(=0A= =0A= XKeyEvent* ,=0A= int =0A= =0A= );=0A= extern KeySym *XGetKeyboardMapping(=0A= =0A= Display* ,=0A= =0A= =0A= =0A= KeyCode ,=0A= =0A= int ,=0A= int* =0A= =0A= );=0A= extern KeySym XStringToKeysym(=0A= =0A= const char* =0A= =0A= );=0A= extern long XMaxRequestSize(=0A= =0A= Display* =0A= =0A= );=0A= extern long XExtendedMaxRequestSize(=0A= =0A= Display* =0A= =0A= );=0A= extern char *XResourceManagerString(=0A= =0A= Display* =0A= =0A= );=0A= extern char *XScreenResourceString(=0A= =0A= Screen* =0A= =0A= );=0A= extern unsigned long XDisplayMotionBufferSize(=0A= =0A= Display* =0A= =0A= );=0A= extern VisualID XVisualIDFromVisual(=0A= =0A= Visual* =0A= =0A= );=0A= =0A= =0A= =0A= extern int XInitThreads(=0A= =0A= void=0A= =0A= );=0A= =0A= extern void XLockDisplay(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern void XUnlockDisplay(=0A= =0A= Display* =0A= =0A= );=0A= =0A= =0A= =0A= extern XExtCodes *XInitExtension(=0A= =0A= Display* ,=0A= const char* =0A= =0A= );=0A= =0A= extern XExtCodes *XAddExtension(=0A= =0A= Display* =0A= =0A= );=0A= extern XExtData *XFindOnExtensionList(=0A= =0A= XExtData** ,=0A= int =0A= =0A= );=0A= extern XExtData **XEHeadOfExtensionList(=0A= =0A= XEDataObject =0A= =0A= );=0A= =0A= =0A= extern Window XRootWindow(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= extern Window XDefaultRootWindow(=0A= =0A= Display* =0A= =0A= );=0A= extern Window XRootWindowOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= extern Visual *XDefaultVisual(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= extern Visual *XDefaultVisualOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= extern GC XDefaultGC(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= extern GC XDefaultGCOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= extern unsigned long XBlackPixel(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= extern unsigned long XWhitePixel(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= extern unsigned long XAllPlanes(=0A= =0A= void=0A= =0A= );=0A= extern unsigned long XBlackPixelOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= extern unsigned long XWhitePixelOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= extern unsigned long XNextRequest(=0A= =0A= Display* =0A= =0A= );=0A= extern unsigned long XLastKnownRequestProcessed(=0A= =0A= Display* =0A= =0A= );=0A= extern char *XServerVendor(=0A= =0A= Display* =0A= =0A= );=0A= extern char *XDisplayString(=0A= =0A= Display* =0A= =0A= );=0A= extern Colormap XDefaultColormap(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= extern Colormap XDefaultColormapOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= extern Display *XDisplayOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= extern Screen *XScreenOfDisplay(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= extern Screen *XDefaultScreenOfDisplay(=0A= =0A= Display* =0A= =0A= );=0A= extern long XEventMaskOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XScreenNumberOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= typedef int (*XErrorHandler) ( =0A= =0A= Display* ,=0A= XErrorEvent* =0A= =0A= );=0A= =0A= extern XErrorHandler XSetErrorHandler (=0A= =0A= XErrorHandler =0A= =0A= );=0A= =0A= =0A= typedef int (*XIOErrorHandler) ( =0A= =0A= Display* =0A= =0A= );=0A= =0A= extern XIOErrorHandler XSetIOErrorHandler (=0A= =0A= XIOErrorHandler =0A= =0A= );=0A= =0A= =0A= extern XPixmapFormatValues *XListPixmapFormats(=0A= =0A= Display* ,=0A= int* =0A= =0A= );=0A= extern int *XListDepths(=0A= =0A= Display* ,=0A= int ,=0A= int* =0A= =0A= );=0A= =0A= =0A= =0A= extern int XReconfigureWMWindow(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= unsigned int ,=0A= XWindowChanges* =0A= =0A= );=0A= =0A= extern int XGetWMProtocols(=0A= =0A= Display* ,=0A= Window ,=0A= Atom** ,=0A= int* =0A= =0A= );=0A= extern int XSetWMProtocols(=0A= =0A= Display* ,=0A= Window ,=0A= Atom* ,=0A= int =0A= =0A= );=0A= extern int XIconifyWindow(=0A= =0A= Display* ,=0A= Window ,=0A= int =0A= =0A= );=0A= extern int XWithdrawWindow(=0A= =0A= Display* ,=0A= Window ,=0A= int =0A= =0A= );=0A= extern int XGetCommand(=0A= =0A= Display* ,=0A= Window ,=0A= char*** ,=0A= int* =0A= =0A= );=0A= extern int XGetWMColormapWindows(=0A= =0A= Display* ,=0A= Window ,=0A= Window** ,=0A= int* =0A= =0A= );=0A= extern int XSetWMColormapWindows(=0A= =0A= Display* ,=0A= Window ,=0A= Window* ,=0A= int =0A= =0A= );=0A= extern void XFreeStringList(=0A= =0A= char** =0A= =0A= );=0A= extern int XSetTransientForHint(=0A= =0A= Display* ,=0A= Window ,=0A= Window =0A= =0A= );=0A= =0A= =0A= =0A= extern int XActivateScreenSaver(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XAddHost(=0A= =0A= Display* ,=0A= XHostAddress* =0A= =0A= );=0A= =0A= extern int XAddHosts(=0A= =0A= Display* ,=0A= XHostAddress* ,=0A= int =0A= =0A= );=0A= =0A= extern int XAddToExtensionList(=0A= =0A= struct _XExtData** ,=0A= XExtData* =0A= =0A= );=0A= =0A= extern int XAddToSaveSet(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XAllocColor(=0A= =0A= Display* ,=0A= Colormap ,=0A= XColor* =0A= =0A= );=0A= =0A= extern int XAllocColorCells(=0A= =0A= Display* ,=0A= Colormap ,=0A= int ,=0A= unsigned long* ,=0A= unsigned int ,=0A= unsigned long* ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XAllocColorPlanes(=0A= =0A= Display* ,=0A= Colormap ,=0A= int ,=0A= unsigned long* ,=0A= int ,=0A= int ,=0A= int ,=0A= int ,=0A= unsigned long* ,=0A= unsigned long* ,=0A= unsigned long* =0A= =0A= );=0A= =0A= extern int XAllocNamedColor(=0A= =0A= Display* ,=0A= Colormap ,=0A= const char* ,=0A= XColor* ,=0A= XColor* =0A= =0A= );=0A= =0A= extern int XAllowEvents(=0A= =0A= Display* ,=0A= int ,=0A= Time =0A= =0A= );=0A= =0A= extern int XAutoRepeatOff(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XAutoRepeatOn(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XBell(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XBitmapBitOrder(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XBitmapPad(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XBitmapUnit(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XCellsOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XChangeActivePointerGrab(=0A= =0A= Display* ,=0A= unsigned int ,=0A= Cursor ,=0A= Time =0A= =0A= );=0A= =0A= extern int XChangeGC(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned long ,=0A= XGCValues* =0A= =0A= );=0A= =0A= extern int XChangeKeyboardControl(=0A= =0A= Display* ,=0A= unsigned long ,=0A= XKeyboardControl* =0A= =0A= );=0A= =0A= extern int XChangeKeyboardMapping(=0A= =0A= Display* ,=0A= int ,=0A= int ,=0A= KeySym* ,=0A= int =0A= =0A= );=0A= =0A= extern int XChangePointerControl(=0A= =0A= Display* ,=0A= int ,=0A= int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XChangeProperty(=0A= =0A= Display* ,=0A= Window ,=0A= Atom ,=0A= Atom ,=0A= int ,=0A= int ,=0A= const unsigned char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XChangeSaveSet(=0A= =0A= Display* ,=0A= Window ,=0A= int =0A= =0A= );=0A= =0A= extern int XChangeWindowAttributes(=0A= =0A= Display* ,=0A= Window ,=0A= unsigned long ,=0A= XSetWindowAttributes* =0A= =0A= );=0A= =0A= extern int XCheckIfEvent(=0A= =0A= Display* ,=0A= XEvent* ,=0A= int (*) (=0A= =0A= Display* ,=0A= XEvent* ,=0A= XPointer =0A= =0A= ) ,=0A= XPointer =0A= =0A= );=0A= =0A= extern int XCheckMaskEvent(=0A= =0A= Display* ,=0A= long ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XCheckTypedEvent(=0A= =0A= Display* ,=0A= int ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XCheckTypedWindowEvent(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XCheckWindowEvent(=0A= =0A= Display* ,=0A= Window ,=0A= long ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XCirculateSubwindows(=0A= =0A= Display* ,=0A= Window ,=0A= int =0A= =0A= );=0A= =0A= extern int XCirculateSubwindowsDown(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XCirculateSubwindowsUp(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XClearArea(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int =0A= =0A= );=0A= =0A= extern int XClearWindow(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XCloseDisplay(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XConfigureWindow(=0A= =0A= Display* ,=0A= Window ,=0A= unsigned int ,=0A= XWindowChanges* =0A= =0A= );=0A= =0A= extern int XConnectionNumber(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XConvertSelection(=0A= =0A= Display* ,=0A= Atom ,=0A= Atom ,=0A= Atom ,=0A= Window ,=0A= Time =0A= =0A= );=0A= =0A= extern int XCopyArea(=0A= =0A= Display* ,=0A= Drawable ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XCopyGC(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned long ,=0A= GC =0A= =0A= );=0A= =0A= extern int XCopyPlane(=0A= =0A= Display* ,=0A= Drawable ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XDefaultDepth(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDefaultDepthOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XDefaultScreen(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XDefineCursor(=0A= =0A= Display* ,=0A= Window ,=0A= Cursor =0A= =0A= );=0A= =0A= extern int XDeleteProperty(=0A= =0A= Display* ,=0A= Window ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XDestroyWindow(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XDestroySubwindows(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XDoesBackingStore(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XDoesSaveUnders(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XDisableAccessControl(=0A= =0A= Display* =0A= =0A= );=0A= =0A= =0A= extern int XDisplayCells(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDisplayHeight(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDisplayHeightMM(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDisplayKeycodes(=0A= =0A= Display* ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XDisplayPlanes(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDisplayWidth(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDisplayWidthMM(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawArc(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawArcs(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XArc* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawImageString(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawImageString16(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= const XChar2b* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawLine(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawLines(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XPoint* ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawPoint(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawPoints(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XPoint* ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawRectangle(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XDrawRectangles(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XRectangle* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawSegments(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XSegment* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawString(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawString16(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= const XChar2b* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawText(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= XTextItem* ,=0A= int =0A= =0A= );=0A= =0A= extern int XDrawText16(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= XTextItem16* ,=0A= int =0A= =0A= );=0A= =0A= extern int XEnableAccessControl(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XEventsQueued(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XFetchName(=0A= =0A= Display* ,=0A= Window ,=0A= char** =0A= =0A= );=0A= =0A= extern int XFillArc(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XFillArcs(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XArc* ,=0A= int =0A= =0A= );=0A= =0A= extern int XFillPolygon(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XPoint* ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XFillRectangle(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XFillRectangles(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XRectangle* ,=0A= int =0A= =0A= );=0A= =0A= extern int XFlush(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XForceScreenSaver(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XFree(=0A= =0A= void* =0A= =0A= );=0A= =0A= extern int XFreeColormap(=0A= =0A= Display* ,=0A= Colormap =0A= =0A= );=0A= =0A= extern int XFreeColors(=0A= =0A= Display* ,=0A= Colormap ,=0A= unsigned long* ,=0A= int ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XFreeCursor(=0A= =0A= Display* ,=0A= Cursor =0A= =0A= );=0A= =0A= extern int XFreeExtensionList(=0A= =0A= char** =0A= =0A= );=0A= =0A= extern int XFreeFont(=0A= =0A= Display* ,=0A= XFontStruct* =0A= =0A= );=0A= =0A= extern int XFreeFontInfo(=0A= =0A= char** ,=0A= XFontStruct* ,=0A= int =0A= =0A= );=0A= =0A= extern int XFreeFontNames(=0A= =0A= char** =0A= =0A= );=0A= =0A= extern int XFreeFontPath(=0A= =0A= char** =0A= =0A= );=0A= =0A= extern int XFreeGC(=0A= =0A= Display* ,=0A= GC =0A= =0A= );=0A= =0A= extern int XFreeModifiermap(=0A= =0A= XModifierKeymap* =0A= =0A= );=0A= =0A= extern int XFreePixmap(=0A= =0A= Display* ,=0A= Pixmap =0A= =0A= );=0A= =0A= extern int XGeometry(=0A= =0A= Display* ,=0A= int ,=0A= const char* ,=0A= const char* ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XGetErrorDatabaseText(=0A= =0A= Display* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XGetErrorText(=0A= =0A= Display* ,=0A= int ,=0A= char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XGetFontProperty(=0A= =0A= XFontStruct* ,=0A= Atom ,=0A= unsigned long* =0A= =0A= );=0A= =0A= extern int XGetGCValues(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned long ,=0A= XGCValues* =0A= =0A= );=0A= =0A= extern int XGetGeometry(=0A= =0A= Display* ,=0A= Drawable ,=0A= Window* ,=0A= int* ,=0A= int* ,=0A= unsigned int* ,=0A= unsigned int* ,=0A= unsigned int* ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XGetIconName(=0A= =0A= Display* ,=0A= Window ,=0A= char** =0A= =0A= );=0A= =0A= extern int XGetInputFocus(=0A= =0A= Display* ,=0A= Window* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XGetKeyboardControl(=0A= =0A= Display* ,=0A= XKeyboardState* =0A= =0A= );=0A= =0A= extern int XGetPointerControl(=0A= =0A= Display* ,=0A= int* ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XGetPointerMapping(=0A= =0A= Display* ,=0A= unsigned char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XGetScreenSaver(=0A= =0A= Display* ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XGetTransientForHint(=0A= =0A= Display* ,=0A= Window ,=0A= Window* =0A= =0A= );=0A= =0A= extern int XGetWindowProperty(=0A= =0A= Display* ,=0A= Window ,=0A= Atom ,=0A= long ,=0A= long ,=0A= int ,=0A= Atom ,=0A= Atom* ,=0A= int* ,=0A= unsigned long* ,=0A= unsigned long* ,=0A= unsigned char** =0A= =0A= );=0A= =0A= extern int XGetWindowAttributes(=0A= =0A= Display* ,=0A= Window ,=0A= XWindowAttributes* =0A= =0A= );=0A= =0A= extern int XGrabButton(=0A= =0A= Display* ,=0A= unsigned int ,=0A= unsigned int ,=0A= Window ,=0A= int ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= Window ,=0A= Cursor =0A= =0A= );=0A= =0A= extern int XGrabKey(=0A= =0A= Display* ,=0A= int ,=0A= unsigned int ,=0A= Window ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XGrabKeyboard(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= int ,=0A= int ,=0A= Time =0A= =0A= );=0A= =0A= extern int XGrabPointer(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= Window ,=0A= Cursor ,=0A= Time =0A= =0A= );=0A= =0A= extern int XGrabServer(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XHeightMMOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XHeightOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XIfEvent(=0A= =0A= Display* ,=0A= XEvent* ,=0A= int (*) (=0A= =0A= Display* ,=0A= XEvent* ,=0A= XPointer =0A= =0A= ) ,=0A= XPointer =0A= =0A= );=0A= =0A= extern int XImageByteOrder(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XInstallColormap(=0A= =0A= Display* ,=0A= Colormap =0A= =0A= );=0A= =0A= extern KeyCode XKeysymToKeycode(=0A= =0A= Display* ,=0A= KeySym =0A= =0A= );=0A= =0A= extern int XKillClient(=0A= =0A= Display* ,=0A= XID =0A= =0A= );=0A= =0A= extern int XLookupColor(=0A= =0A= Display* ,=0A= Colormap ,=0A= const char* ,=0A= XColor* ,=0A= XColor* =0A= =0A= );=0A= =0A= extern int XLowerWindow(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XMapRaised(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XMapSubwindows(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XMapWindow(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XMaskEvent(=0A= =0A= Display* ,=0A= long ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XMaxCmapsOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XMinCmapsOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XMoveResizeWindow(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XMoveWindow(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XNextEvent(=0A= =0A= Display* ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XNoOp(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XParseColor(=0A= =0A= Display* ,=0A= Colormap ,=0A= const char* ,=0A= XColor* =0A= =0A= );=0A= =0A= extern int XParseGeometry(=0A= =0A= const char* ,=0A= int* ,=0A= int* ,=0A= unsigned int* ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XPeekEvent(=0A= =0A= Display* ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XPeekIfEvent(=0A= =0A= Display* ,=0A= XEvent* ,=0A= int (*) (=0A= =0A= Display* ,=0A= XEvent* ,=0A= XPointer =0A= =0A= ) ,=0A= XPointer =0A= =0A= );=0A= =0A= extern int XPending(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XPlanesOfScreen(=0A= =0A= Screen* =0A= =0A= =0A= );=0A= =0A= extern int XProtocolRevision(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XProtocolVersion(=0A= =0A= Display* =0A= =0A= );=0A= =0A= =0A= extern int XPutBackEvent(=0A= =0A= Display* ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XPutImage(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= XImage* ,=0A= int ,=0A= int ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XQLength(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XQueryBestCursor(=0A= =0A= Display* ,=0A= Drawable ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int* ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XQueryBestSize(=0A= =0A= Display* ,=0A= int ,=0A= Drawable ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int* ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XQueryBestStipple(=0A= =0A= Display* ,=0A= Drawable ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int* ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XQueryBestTile(=0A= =0A= Display* ,=0A= Drawable ,=0A= unsigned int ,=0A= unsigned int ,=0A= unsigned int* ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XQueryColor(=0A= =0A= Display* ,=0A= Colormap ,=0A= XColor* =0A= =0A= );=0A= =0A= extern int XQueryColors(=0A= =0A= Display* ,=0A= Colormap ,=0A= XColor* ,=0A= int =0A= =0A= );=0A= =0A= extern int XQueryExtension(=0A= =0A= Display* ,=0A= const char* ,=0A= int* ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XQueryKeymap(=0A= =0A= Display* ,=0A= char [32] =0A= =0A= );=0A= =0A= extern int XQueryPointer(=0A= =0A= Display* ,=0A= Window ,=0A= Window* ,=0A= Window* ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XQueryTextExtents(=0A= =0A= Display* ,=0A= XID ,=0A= const char* ,=0A= int ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= XCharStruct* =0A= =0A= );=0A= =0A= extern int XQueryTextExtents16(=0A= =0A= Display* ,=0A= XID ,=0A= const XChar2b* ,=0A= int ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= XCharStruct* =0A= =0A= );=0A= =0A= extern int XQueryTree(=0A= =0A= Display* ,=0A= Window ,=0A= Window* ,=0A= Window* ,=0A= Window** ,=0A= unsigned int* =0A= =0A= );=0A= =0A= extern int XRaiseWindow(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XReadBitmapFile(=0A= =0A= Display* ,=0A= Drawable ,=0A= const char* ,=0A= unsigned int* ,=0A= unsigned int* ,=0A= Pixmap* ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XReadBitmapFileData(=0A= =0A= const char* ,=0A= unsigned int* ,=0A= unsigned int* ,=0A= unsigned char** ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XRebindKeysym(=0A= =0A= Display* ,=0A= KeySym ,=0A= KeySym* ,=0A= int ,=0A= const unsigned char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XRecolorCursor(=0A= =0A= Display* ,=0A= Cursor ,=0A= XColor* ,=0A= XColor* =0A= =0A= );=0A= =0A= extern int XRefreshKeyboardMapping(=0A= =0A= XMappingEvent* =0A= =0A= );=0A= =0A= extern int XRemoveFromSaveSet(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XRemoveHost(=0A= =0A= Display* ,=0A= XHostAddress* =0A= =0A= );=0A= =0A= extern int XRemoveHosts(=0A= =0A= Display* ,=0A= XHostAddress* ,=0A= int =0A= =0A= );=0A= =0A= extern int XReparentWindow(=0A= =0A= Display* ,=0A= Window ,=0A= Window ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XResetScreenSaver(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XResizeWindow(=0A= =0A= Display* ,=0A= Window ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XRestackWindows(=0A= =0A= Display* ,=0A= Window* ,=0A= int =0A= =0A= );=0A= =0A= extern int XRotateBuffers(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XRotateWindowProperties(=0A= =0A= Display* ,=0A= Window ,=0A= Atom* ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XScreenCount(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XSelectInput(=0A= =0A= Display* ,=0A= Window ,=0A= long =0A= =0A= );=0A= =0A= extern int XSendEvent(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= long ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XSetAccessControl(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetArcMode(=0A= =0A= Display* ,=0A= GC ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetBackground(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XSetClipMask(=0A= =0A= Display* ,=0A= GC ,=0A= Pixmap =0A= =0A= );=0A= =0A= extern int XSetClipOrigin(=0A= =0A= Display* ,=0A= GC ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetClipRectangles(=0A= =0A= Display* ,=0A= GC ,=0A= int ,=0A= int ,=0A= XRectangle* ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetCloseDownMode(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetCommand(=0A= =0A= Display* ,=0A= Window ,=0A= char** ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetDashes(=0A= =0A= Display* ,=0A= GC ,=0A= int ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetFillRule(=0A= =0A= Display* ,=0A= GC ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetFillStyle(=0A= =0A= Display* ,=0A= GC ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetFont(=0A= =0A= Display* ,=0A= GC ,=0A= Font =0A= =0A= );=0A= =0A= extern int XSetFontPath(=0A= =0A= Display* ,=0A= char** ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetForeground(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XSetFunction(=0A= =0A= Display* ,=0A= GC ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetGraphicsExposures(=0A= =0A= Display* ,=0A= GC ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetIconName(=0A= =0A= Display* ,=0A= Window ,=0A= const char* =0A= =0A= );=0A= =0A= extern int XSetInputFocus(=0A= =0A= Display* ,=0A= Window ,=0A= int ,=0A= Time =0A= =0A= );=0A= =0A= extern int XSetLineAttributes(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetModifierMapping(=0A= =0A= Display* ,=0A= XModifierKeymap* =0A= =0A= );=0A= =0A= extern int XSetPlaneMask(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XSetPointerMapping(=0A= =0A= Display* ,=0A= const unsigned char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetScreenSaver(=0A= =0A= Display* ,=0A= int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetSelectionOwner(=0A= =0A= Display* ,=0A= Atom ,=0A= Window ,=0A= Time =0A= =0A= );=0A= =0A= extern int XSetState(=0A= =0A= Display* ,=0A= GC ,=0A= unsigned long ,=0A= unsigned long ,=0A= int ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XSetStipple(=0A= =0A= Display* ,=0A= GC ,=0A= Pixmap =0A= =0A= );=0A= =0A= extern int XSetSubwindowMode(=0A= =0A= Display* ,=0A= GC ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetTSOrigin(=0A= =0A= Display* ,=0A= GC ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetTile(=0A= =0A= Display* ,=0A= GC ,=0A= Pixmap =0A= =0A= );=0A= =0A= extern int XSetWindowBackground(=0A= =0A= Display* ,=0A= Window ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XSetWindowBackgroundPixmap(=0A= =0A= Display* ,=0A= Window ,=0A= Pixmap =0A= =0A= );=0A= =0A= extern int XSetWindowBorder(=0A= =0A= Display* ,=0A= Window ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int XSetWindowBorderPixmap(=0A= =0A= Display* ,=0A= Window ,=0A= Pixmap =0A= =0A= );=0A= =0A= extern int XSetWindowBorderWidth(=0A= =0A= Display* ,=0A= Window ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XSetWindowColormap(=0A= =0A= Display* ,=0A= Window ,=0A= Colormap =0A= =0A= );=0A= =0A= extern int XStoreBuffer(=0A= =0A= Display* ,=0A= const char* ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XStoreBytes(=0A= =0A= Display* ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XStoreColor(=0A= =0A= Display* ,=0A= Colormap ,=0A= XColor* =0A= =0A= );=0A= =0A= extern int XStoreColors(=0A= =0A= Display* ,=0A= Colormap ,=0A= XColor* ,=0A= int =0A= =0A= );=0A= =0A= extern int XStoreName(=0A= =0A= Display* ,=0A= Window ,=0A= const char* =0A= =0A= );=0A= =0A= extern int XStoreNamedColor(=0A= =0A= Display* ,=0A= Colormap ,=0A= const char* ,=0A= unsigned long ,=0A= int =0A= =0A= );=0A= =0A= extern int XSync(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XTextExtents(=0A= =0A= XFontStruct* ,=0A= const char* ,=0A= int ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= XCharStruct* =0A= =0A= );=0A= =0A= extern int XTextExtents16(=0A= =0A= XFontStruct* ,=0A= const XChar2b* ,=0A= int ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= XCharStruct* =0A= =0A= );=0A= =0A= extern int XTextWidth(=0A= =0A= XFontStruct* ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XTextWidth16(=0A= =0A= XFontStruct* ,=0A= const XChar2b* ,=0A= int =0A= =0A= );=0A= =0A= extern int XTranslateCoordinates(=0A= =0A= Display* ,=0A= Window ,=0A= Window ,=0A= int ,=0A= int ,=0A= int* ,=0A= int* ,=0A= Window* =0A= =0A= );=0A= =0A= extern int XUndefineCursor(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XUngrabButton(=0A= =0A= Display* ,=0A= unsigned int ,=0A= unsigned int ,=0A= Window =0A= =0A= );=0A= =0A= extern int XUngrabKey(=0A= =0A= Display* ,=0A= int ,=0A= unsigned int ,=0A= Window =0A= =0A= );=0A= =0A= extern int XUngrabKeyboard(=0A= =0A= Display* ,=0A= Time =0A= =0A= );=0A= =0A= extern int XUngrabPointer(=0A= =0A= Display* ,=0A= Time =0A= =0A= );=0A= =0A= extern int XUngrabServer(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XUninstallColormap(=0A= =0A= Display* ,=0A= Colormap =0A= =0A= );=0A= =0A= extern int XUnloadFont(=0A= =0A= Display* ,=0A= Font =0A= =0A= );=0A= =0A= extern int XUnmapSubwindows(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XUnmapWindow(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XVendorRelease(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern int XWarpPointer(=0A= =0A= Display* ,=0A= Window ,=0A= Window ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XWidthMMOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XWidthOfScreen(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern int XWindowEvent(=0A= =0A= Display* ,=0A= Window ,=0A= long ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern int XWriteBitmapFile(=0A= =0A= Display* ,=0A= const char* ,=0A= Pixmap ,=0A= unsigned int ,=0A= unsigned int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XSupportsLocale(=0A= =0A= void=0A= =0A= );=0A= =0A= extern char *XSetLocaleModifiers(=0A= =0A= const char* =0A= =0A= );=0A= =0A= extern XOM XOpenOM(=0A= =0A= Display* ,=0A= struct _XrmHashBucketRec* ,=0A= const char* ,=0A= const char* =0A= =0A= );=0A= =0A= extern int XCloseOM(=0A= =0A= XOM =0A= =0A= );=0A= =0A= extern char *XSetOMValues(=0A= =0A= XOM ,=0A= ...=0A= =0A= );=0A= =0A= extern char *XGetOMValues(=0A= =0A= XOM ,=0A= ...=0A= =0A= );=0A= =0A= extern Display *XDisplayOfOM(=0A= =0A= XOM =0A= =0A= );=0A= =0A= extern char *XLocaleOfOM(=0A= =0A= XOM =0A= =0A= );=0A= =0A= extern XOC XCreateOC(=0A= =0A= XOM ,=0A= ...=0A= =0A= );=0A= =0A= extern void XDestroyOC(=0A= =0A= XOC =0A= =0A= );=0A= =0A= extern XOM XOMOfOC(=0A= =0A= XOC =0A= =0A= );=0A= =0A= extern char *XSetOCValues(=0A= =0A= XOC ,=0A= ...=0A= =0A= );=0A= =0A= extern char *XGetOCValues(=0A= =0A= XOC ,=0A= ...=0A= =0A= );=0A= =0A= extern XFontSet XCreateFontSet(=0A= =0A= Display* ,=0A= const char* ,=0A= char*** ,=0A= int* ,=0A= char** =0A= =0A= );=0A= =0A= extern void XFreeFontSet(=0A= =0A= Display* ,=0A= XFontSet =0A= =0A= );=0A= =0A= extern int XFontsOfFontSet(=0A= =0A= XFontSet ,=0A= XFontStruct*** ,=0A= char*** =0A= =0A= );=0A= =0A= extern char *XBaseFontNameListOfFontSet(=0A= =0A= XFontSet =0A= =0A= );=0A= =0A= extern char *XLocaleOfFontSet(=0A= =0A= XFontSet =0A= =0A= );=0A= =0A= extern int XContextDependentDrawing(=0A= =0A= XFontSet =0A= =0A= );=0A= =0A= extern int XDirectionalDependentDrawing(=0A= =0A= XFontSet =0A= =0A= );=0A= =0A= extern int XContextualDrawing(=0A= =0A= XFontSet =0A= =0A= );=0A= =0A= extern XFontSetExtents *XExtentsOfFontSet(=0A= =0A= XFontSet =0A= =0A= );=0A= =0A= extern int XmbTextEscapement(=0A= =0A= XFontSet ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern int XwcTextEscapement(=0A= =0A= XFontSet ,=0A= const wchar_t* ,=0A= int =0A= =0A= );=0A= =0A= extern int XmbTextExtents(=0A= =0A= XFontSet ,=0A= const char* ,=0A= int ,=0A= XRectangle* ,=0A= XRectangle* =0A= =0A= );=0A= =0A= extern int XwcTextExtents(=0A= =0A= XFontSet ,=0A= const wchar_t* ,=0A= int ,=0A= XRectangle* ,=0A= XRectangle* =0A= =0A= );=0A= =0A= extern int XmbTextPerCharExtents(=0A= =0A= XFontSet ,=0A= const char* ,=0A= int ,=0A= XRectangle* ,=0A= XRectangle* ,=0A= int ,=0A= int* ,=0A= XRectangle* ,=0A= XRectangle* =0A= =0A= );=0A= =0A= extern int XwcTextPerCharExtents(=0A= =0A= XFontSet ,=0A= const wchar_t* ,=0A= int ,=0A= XRectangle* ,=0A= XRectangle* ,=0A= int ,=0A= int* ,=0A= XRectangle* ,=0A= XRectangle* =0A= =0A= );=0A= =0A= extern void XmbDrawText(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= XmbTextItem* ,=0A= int =0A= =0A= );=0A= =0A= extern void XwcDrawText(=0A= =0A= Display* ,=0A= Drawable ,=0A= GC ,=0A= int ,=0A= int ,=0A= XwcTextItem* ,=0A= int =0A= =0A= );=0A= =0A= extern void XmbDrawString(=0A= =0A= Display* ,=0A= Drawable ,=0A= XFontSet ,=0A= GC ,=0A= int ,=0A= int ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern void XwcDrawString(=0A= =0A= Display* ,=0A= Drawable ,=0A= XFontSet ,=0A= GC ,=0A= int ,=0A= int ,=0A= const wchar_t* ,=0A= int =0A= =0A= );=0A= =0A= extern void XmbDrawImageString(=0A= =0A= Display* ,=0A= Drawable ,=0A= XFontSet ,=0A= GC ,=0A= int ,=0A= int ,=0A= const char* ,=0A= int =0A= =0A= );=0A= =0A= extern void XwcDrawImageString(=0A= =0A= Display* ,=0A= Drawable ,=0A= XFontSet ,=0A= GC ,=0A= int ,=0A= int ,=0A= const wchar_t* ,=0A= int =0A= =0A= );=0A= =0A= extern XIM XOpenIM(=0A= =0A= Display* ,=0A= struct _XrmHashBucketRec* ,=0A= char* ,=0A= char* =0A= =0A= );=0A= =0A= extern int XCloseIM(=0A= =0A= XIM =0A= =0A= );=0A= =0A= extern char *XGetIMValues(=0A= =0A= XIM , ...=0A= =0A= );=0A= =0A= extern char *XSetIMValues(=0A= =0A= XIM , ...=0A= =0A= );=0A= =0A= extern Display *XDisplayOfIM(=0A= =0A= XIM =0A= =0A= );=0A= =0A= extern char *XLocaleOfIM(=0A= =0A= XIM =0A= =0A= );=0A= =0A= extern XIC XCreateIC(=0A= =0A= XIM , ...=0A= =0A= );=0A= =0A= extern void XDestroyIC(=0A= =0A= XIC =0A= =0A= );=0A= =0A= extern void XSetICFocus(=0A= =0A= XIC =0A= =0A= );=0A= =0A= extern void XUnsetICFocus(=0A= =0A= XIC =0A= =0A= );=0A= =0A= extern wchar_t *XwcResetIC(=0A= =0A= XIC =0A= =0A= );=0A= =0A= extern char *XmbResetIC(=0A= =0A= XIC =0A= =0A= );=0A= =0A= extern char *XSetICValues(=0A= =0A= XIC , ...=0A= =0A= );=0A= =0A= extern char *XGetICValues(=0A= =0A= XIC , ...=0A= =0A= );=0A= =0A= extern XIM XIMOfIC(=0A= =0A= XIC =0A= =0A= );=0A= =0A= extern int XFilterEvent(=0A= =0A= XEvent* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XmbLookupString(=0A= =0A= XIC ,=0A= XKeyPressedEvent* ,=0A= char* ,=0A= int ,=0A= KeySym* ,=0A= int * =0A= =0A= );=0A= =0A= extern int XwcLookupString(=0A= =0A= XIC ,=0A= XKeyPressedEvent* ,=0A= wchar_t* ,=0A= int ,=0A= KeySym* ,=0A= int * =0A= =0A= );=0A= =0A= extern XVaNestedList XVaCreateNestedList(=0A= =0A= int , ...=0A= =0A= );=0A= =0A= =0A= =0A= extern int XRegisterIMInstantiateCallback(=0A= =0A= Display* ,=0A= struct _XrmHashBucketRec* ,=0A= char* ,=0A= char* ,=0A= XIDProc ,=0A= XPointer =0A= =0A= );=0A= =0A= extern int XUnregisterIMInstantiateCallback(=0A= =0A= Display* ,=0A= struct _XrmHashBucketRec* ,=0A= char* ,=0A= char* ,=0A= XIDProc ,=0A= XPointer =0A= =0A= );=0A= =0A= typedef void (*XConnectionWatchProc)(=0A= =0A= Display* ,=0A= XPointer ,=0A= int ,=0A= int , =0A= XPointer* =0A= =0A= );=0A= =0A= =0A= extern int XInternalConnectionNumbers(=0A= =0A= Display* ,=0A= int** ,=0A= int* =0A= =0A= );=0A= =0A= extern void XProcessInternalConnection(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XAddConnectionWatch(=0A= =0A= Display* ,=0A= XConnectionWatchProc ,=0A= XPointer =0A= =0A= );=0A= =0A= extern void XRemoveConnectionWatch(=0A= =0A= Display* ,=0A= XConnectionWatchProc ,=0A= XPointer =0A= =0A= );=0A= =0A= } =0A= =0A= =0A= # 1 "Xext/XDefs.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/Xutil.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= long flags; =0A= int x, y; =0A= int width, height; =0A= int min_width, min_height;=0A= int max_width, max_height;=0A= int width_inc, height_inc;=0A= struct {=0A= int x; =0A= int y; =0A= } min_aspect, max_aspect;=0A= int base_width, base_height; =0A= int win_gravity; =0A= } XSizeHints;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= long flags; =0A= int input; =0A= =0A= int initial_state; =0A= Pixmap icon_pixmap; =0A= Window icon_window; =0A= int icon_x, icon_y; =0A= Pixmap icon_mask; =0A= XID window_group; =0A= =0A= } XWMHints;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= unsigned char *value; =0A= Atom encoding; =0A= int format; =0A= unsigned long nitems; =0A= } XTextProperty;=0A= =0A= =0A= =0A= =0A= =0A= typedef enum {=0A= XStringStyle, =0A= XCompoundTextStyle, =0A= XTextStyle, =0A= XStdICCTextStyle =0A= } XICCEncodingStyle;=0A= =0A= typedef struct {=0A= int min_width, min_height;=0A= int max_width, max_height;=0A= int width_inc, height_inc;=0A= } XIconSize;=0A= =0A= typedef struct {=0A= char *res_name;=0A= char *res_class;=0A= } XClassHint;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XComposeStatus {=0A= XPointer compose_ptr; =0A= int chars_matched; =0A= } XComposeStatus;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XRegion *Region; =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= Visual *visual;=0A= VisualID visualid;=0A= int screen;=0A= int depth;=0A= =0A= int c_class; =0A= =0A= =0A= =0A= unsigned long red_mask;=0A= unsigned long green_mask;=0A= unsigned long blue_mask;=0A= int colormap_size;=0A= int bits_per_rgb;=0A= } XVisualInfo;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= Colormap colormap;=0A= unsigned long red_max;=0A= unsigned long red_mult;=0A= unsigned long green_max;=0A= unsigned long green_mult;=0A= unsigned long blue_max;=0A= unsigned long blue_mult;=0A= unsigned long base_pixel;=0A= VisualID visualid; =0A= XID killid; =0A= } XStandardColormap;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef int XContext;=0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= =0A= =0A= extern XClassHint *XAllocClassHint (=0A= =0A= void=0A= =0A= );=0A= =0A= extern XIconSize *XAllocIconSize (=0A= =0A= void=0A= =0A= );=0A= =0A= extern XSizeHints *XAllocSizeHints (=0A= =0A= void=0A= =0A= );=0A= =0A= extern XStandardColormap *XAllocStandardColormap (=0A= =0A= void=0A= =0A= );=0A= =0A= extern XWMHints *XAllocWMHints (=0A= =0A= void=0A= =0A= );=0A= =0A= extern int XClipBox(=0A= =0A= Region ,=0A= XRectangle* =0A= =0A= );=0A= =0A= extern Region XCreateRegion(=0A= =0A= void=0A= =0A= );=0A= =0A= extern char *XDefaultString(=0A= =0A= void=0A= =0A= );=0A= =0A= extern int XDeleteContext(=0A= =0A= Display* ,=0A= XID ,=0A= XContext =0A= =0A= );=0A= =0A= extern int XDestroyRegion(=0A= =0A= Region =0A= =0A= );=0A= =0A= extern int XEmptyRegion(=0A= =0A= Region =0A= =0A= );=0A= =0A= extern int XEqualRegion(=0A= =0A= Region ,=0A= Region =0A= =0A= );=0A= =0A= extern int XFindContext(=0A= =0A= Display* ,=0A= XID ,=0A= XContext ,=0A= XPointer* =0A= =0A= );=0A= =0A= extern int XGetClassHint(=0A= =0A= Display* ,=0A= Window ,=0A= XClassHint* =0A= =0A= );=0A= =0A= extern int XGetIconSizes(=0A= =0A= Display* ,=0A= Window ,=0A= XIconSize** ,=0A= int* =0A= =0A= );=0A= =0A= extern int XGetNormalHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* =0A= =0A= );=0A= =0A= extern int XGetRGBColormaps(=0A= =0A= Display* ,=0A= Window ,=0A= XStandardColormap** ,=0A= int* ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XGetSizeHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XGetStandardColormap(=0A= =0A= Display* ,=0A= Window ,=0A= XStandardColormap* ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XGetTextProperty(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* ,=0A= Atom =0A= =0A= );=0A= =0A= extern XVisualInfo *XGetVisualInfo(=0A= =0A= Display* ,=0A= long ,=0A= XVisualInfo* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XGetWMClientMachine(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern XWMHints *XGetWMHints(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern int XGetWMIconName(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern int XGetWMName(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern int XGetWMNormalHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* ,=0A= long* =0A= =0A= );=0A= =0A= extern int XGetWMSizeHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* ,=0A= long* ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XGetZoomHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* =0A= =0A= );=0A= =0A= extern int XIntersectRegion(=0A= =0A= Region ,=0A= Region ,=0A= Region =0A= =0A= );=0A= =0A= extern void XConvertCase(=0A= =0A= KeySym ,=0A= KeySym* ,=0A= KeySym* =0A= =0A= );=0A= =0A= extern int XLookupString(=0A= =0A= XKeyEvent* ,=0A= char* ,=0A= int ,=0A= KeySym* ,=0A= XComposeStatus* =0A= =0A= );=0A= =0A= extern int XMatchVisualInfo(=0A= =0A= Display* ,=0A= int ,=0A= int ,=0A= int ,=0A= XVisualInfo* =0A= =0A= );=0A= =0A= extern int XOffsetRegion(=0A= =0A= Region ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XPointInRegion(=0A= =0A= Region ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern Region XPolygonRegion(=0A= =0A= XPoint* ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XRectInRegion(=0A= =0A= Region ,=0A= int ,=0A= int ,=0A= unsigned int ,=0A= unsigned int =0A= =0A= );=0A= =0A= extern int XSaveContext(=0A= =0A= Display* ,=0A= XID ,=0A= XContext ,=0A= const char* =0A= =0A= );=0A= =0A= extern int XSetClassHint(=0A= =0A= Display* ,=0A= Window ,=0A= XClassHint* =0A= =0A= );=0A= =0A= extern int XSetIconSizes(=0A= =0A= Display* ,=0A= Window ,=0A= XIconSize* ,=0A= int =0A= =0A= );=0A= =0A= extern int XSetNormalHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* =0A= =0A= );=0A= =0A= extern void XSetRGBColormaps(=0A= =0A= Display* ,=0A= Window ,=0A= XStandardColormap* ,=0A= int ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XSetSizeHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XSetStandardProperties(=0A= =0A= Display* ,=0A= Window ,=0A= const char* ,=0A= const char* ,=0A= Pixmap ,=0A= char** ,=0A= int ,=0A= XSizeHints* =0A= =0A= );=0A= =0A= extern void XSetTextProperty(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* ,=0A= Atom =0A= =0A= );=0A= =0A= extern void XSetWMClientMachine(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern int XSetWMHints(=0A= =0A= Display* ,=0A= Window ,=0A= XWMHints* =0A= =0A= );=0A= =0A= extern void XSetWMIconName(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern void XSetWMName(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern void XSetWMNormalHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* =0A= =0A= );=0A= =0A= extern void XSetWMProperties(=0A= =0A= Display* ,=0A= Window ,=0A= XTextProperty* ,=0A= XTextProperty* ,=0A= char** ,=0A= int ,=0A= XSizeHints* ,=0A= XWMHints* ,=0A= XClassHint* =0A= =0A= );=0A= =0A= extern void XmbSetWMProperties(=0A= =0A= Display* ,=0A= Window ,=0A= const char* ,=0A= const char* ,=0A= char** ,=0A= int ,=0A= XSizeHints* ,=0A= XWMHints* ,=0A= XClassHint* =0A= =0A= );=0A= =0A= extern void XSetWMSizeHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XSetRegion(=0A= =0A= Display* ,=0A= GC ,=0A= Region =0A= =0A= );=0A= =0A= extern void XSetStandardColormap(=0A= =0A= Display* ,=0A= Window ,=0A= XStandardColormap* ,=0A= Atom =0A= =0A= );=0A= =0A= extern int XSetZoomHints(=0A= =0A= Display* ,=0A= Window ,=0A= XSizeHints* =0A= =0A= );=0A= =0A= extern int XShrinkRegion(=0A= =0A= Region ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int XStringListToTextProperty(=0A= =0A= char** ,=0A= int ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern int XSubtractRegion(=0A= =0A= Region ,=0A= Region ,=0A= Region =0A= =0A= );=0A= =0A= extern int XmbTextListToTextProperty(=0A= =0A= Display* ,=0A= char** ,=0A= int ,=0A= XICCEncodingStyle ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern int XwcTextListToTextProperty(=0A= =0A= Display* ,=0A= wchar_t** ,=0A= int ,=0A= XICCEncodingStyle ,=0A= XTextProperty* =0A= =0A= );=0A= =0A= extern void XwcFreeStringList(=0A= =0A= wchar_t** =0A= =0A= );=0A= =0A= extern int XTextPropertyToStringList(=0A= =0A= XTextProperty* ,=0A= char*** ,=0A= int* =0A= =0A= );=0A= =0A= extern int XmbTextPropertyToTextList(=0A= =0A= Display* ,=0A= XTextProperty* ,=0A= char*** ,=0A= int* =0A= =0A= );=0A= =0A= extern int XwcTextPropertyToTextList(=0A= =0A= Display* ,=0A= XTextProperty* ,=0A= wchar_t*** ,=0A= int* =0A= =0A= );=0A= =0A= extern int XUnionRectWithRegion(=0A= =0A= XRectangle* ,=0A= Region ,=0A= Region =0A= =0A= );=0A= =0A= extern int XUnionRegion(=0A= =0A= Region ,=0A= Region ,=0A= Region =0A= =0A= );=0A= =0A= extern int XWMGeometry(=0A= =0A= Display* ,=0A= int ,=0A= const char* ,=0A= const char* ,=0A= unsigned int ,=0A= XSizeHints* ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= int* ,=0A= int* =0A= =0A= );=0A= =0A= extern int XXorRegion(=0A= =0A= Region ,=0A= Region ,=0A= Region =0A= =0A= );=0A= =0A= } =0A= =0A= =0A= # 2 "Xext/XDefs.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/Xatom.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 3 "Xext/XDefs.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/xpm.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef unsigned long Pixel; =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= char *name; =0A= char *value; =0A= Pixel pixel; =0A= } XpmColorSymbol;=0A= =0A= typedef struct {=0A= char *name; =0A= unsigned int nlines; =0A= char **lines; =0A= } XpmExtension;=0A= =0A= typedef struct {=0A= char *string; =0A= char *symbolic; =0A= char *m_color; =0A= char *g4_color; =0A= char *g_color; =0A= char *c_color; =0A= } XpmColor;=0A= =0A= typedef struct {=0A= unsigned int width; =0A= unsigned int height; =0A= unsigned int cpp; =0A= unsigned int ncolors; =0A= XpmColor *colorTable; =0A= unsigned int *data; =0A= } XpmImage;=0A= =0A= typedef struct {=0A= unsigned long valuemask; =0A= char *hints_cmt; =0A= char *colors_cmt; =0A= char *pixels_cmt; =0A= unsigned int x_hotspot; =0A= unsigned int y_hotspot; =0A= unsigned int nextensions; =0A= XpmExtension *extensions; =0A= } XpmInfo;=0A= =0A= typedef int (*XpmAllocColorFunc)(=0A= =0A= Display* ,=0A= Colormap ,=0A= char* ,=0A= XColor* ,=0A= void* =0A= =0A= );=0A= =0A= typedef int (*XpmFreeColorsFunc)(=0A= =0A= Display* ,=0A= Colormap ,=0A= Pixel* ,=0A= int ,=0A= void* =0A= =0A= );=0A= =0A= typedef struct {=0A= unsigned long valuemask; =0A= =0A= =0A= Visual *visual; =0A= Colormap colormap; =0A= unsigned int depth; =0A= unsigned int width; =0A= =0A= unsigned int height; =0A= =0A= unsigned int x_hotspot; =0A= =0A= unsigned int y_hotspot; =0A= =0A= unsigned int cpp; =0A= =0A= Pixel *pixels; =0A= unsigned int npixels; =0A= XpmColorSymbol *colorsymbols; =0A= unsigned int numsymbols; =0A= char *rgb_fname; =0A= unsigned int nextensions; =0A= XpmExtension *extensions; =0A= =0A= unsigned int ncolors; =0A= XpmColor *colorTable; =0A= =0A= char *hints_cmt; =0A= char *colors_cmt; =0A= char *pixels_cmt; =0A= =0A= unsigned int mask_pixel; =0A= =0A= =0A= =0A= int exactColors; =0A= unsigned int closeness; =0A= unsigned int red_closeness; =0A= unsigned int green_closeness; =0A= unsigned int blue_closeness; =0A= int color_key; =0A= =0A= Pixel *alloc_pixels; =0A= =0A= int nalloc_pixels; =0A= =0A= =0A= int alloc_close_colors; =0A= =0A= =0A= int bitmap_format; =0A= =0A= =0A= =0A= XpmAllocColorFunc alloc_color; =0A= XpmFreeColorsFunc free_colors; =0A= void *color_closure; =0A= =0A= =0A= } XpmAttributes;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" {=0A= =0A= =0A= =0A= =0A= =0A= =0A= extern int XpmCreatePixmapFromData (Display *display,=0A= Drawable d,=0A= char **data,=0A= Pixmap *pixmap_return,=0A= Pixmap *shapemask_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateDataFromPixmap (Display *display,=0A= char ***data_return,=0A= Pixmap pixmap,=0A= Pixmap shapemask,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmReadFileToPixmap (Display *display,=0A= Drawable d,=0A= char *filename,=0A= Pixmap *pixmap_return,=0A= Pixmap *shapemask_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmWriteFileFromPixmap (Display *display,=0A= char *filename,=0A= Pixmap pixmap,=0A= Pixmap shapemask,=0A= XpmAttributes *attributes) ;=0A= =0A= =0A= extern int XpmCreateImageFromData (Display *display,=0A= char **data,=0A= XImage **image_return,=0A= XImage **shapemask_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateDataFromImage (Display *display,=0A= char ***data_return,=0A= XImage *image,=0A= XImage *shapeimage,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmReadFileToImage (Display *display,=0A= char *filename,=0A= XImage **image_return,=0A= XImage **shapeimage_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmWriteFileFromImage (Display *display,=0A= char *filename,=0A= XImage *image,=0A= XImage *shapeimage,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateImageFromBuffer (Display *display,=0A= char *buffer,=0A= XImage **image_return,=0A= XImage **shapemask_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreatePixmapFromBuffer (Display *display,=0A= Drawable d,=0A= char *buffer,=0A= Pixmap *pixmap_return,=0A= Pixmap *shapemask_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateBufferFromImage (Display *display,=0A= char **buffer_return,=0A= XImage *image,=0A= XImage *shapeimage,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateBufferFromPixmap (Display *display,=0A= char **buffer_return,=0A= Pixmap pixmap,=0A= Pixmap shapemask,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmReadFileToBuffer (char *filename, char = **buffer_return) ;=0A= extern int XpmWriteFileFromBuffer (char *filename, char = *buffer) ;=0A= =0A= extern int XpmReadFileToData (char *filename, char = ***data_return) ;=0A= extern int XpmWriteFileFromData (char *filename, char **data) = ;=0A= =0A= extern int XpmAttributesSize () ;=0A= extern void XpmFreeAttributes (XpmAttributes *attributes) ;=0A= extern void XpmFreeExtensions (XpmExtension *extensions,=0A= int nextensions) ;=0A= =0A= extern void XpmFreeXpmImage (XpmImage *image) ;=0A= extern void XpmFreeXpmInfo (XpmInfo *info) ;=0A= extern char * XpmGetErrorString (int errcode) ;=0A= extern int XpmLibraryVersion () ;=0A= =0A= =0A= extern int XpmReadFileToXpmImage (char *filename,=0A= XpmImage *image,=0A= XpmInfo *info) ;=0A= =0A= extern int XpmWriteFileFromXpmImage (char *filename,=0A= XpmImage *image,=0A= XpmInfo *info) ;=0A= =0A= extern int XpmCreatePixmapFromXpmImage (Display *display,=0A= Drawable d,=0A= XpmImage *image,=0A= Pixmap *pixmap_return,=0A= Pixmap *shapemask_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateImageFromXpmImage (Display *display,=0A= XpmImage *image,=0A= XImage **image_return,=0A= XImage **shapeimage_return,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateXpmImageFromImage (Display *display,=0A= XImage *image,=0A= XImage *shapeimage,=0A= XpmImage *xpmimage,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateXpmImageFromPixmap (Display *display,=0A= Pixmap pixmap,=0A= Pixmap shapemask,=0A= XpmImage *xpmimage,=0A= XpmAttributes *attributes) ;=0A= =0A= extern int XpmCreateDataFromXpmImage (char ***data_return,=0A= XpmImage *image,=0A= XpmInfo *info) ;=0A= =0A= extern int XpmCreateXpmImageFromData (char **data,=0A= XpmImage *image,=0A= XpmInfo *info) ;=0A= =0A= extern int XpmCreateXpmImageFromBuffer (char *buffer,=0A= XpmImage *image,=0A= XpmInfo *info) ;=0A= =0A= extern int XpmCreateBufferFromXpmImage (char **buffer_return,=0A= XpmImage *image,=0A= XpmInfo *info) ;=0A= =0A= extern int XpmGetParseError (char *filename,=0A= int *linenum_return,=0A= int *charnum_return) ;=0A= =0A= extern void XpmFree (void *ptr) ;=0A= =0A= =0A= } =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 4 "Xext/XDefs.h" 2=0A= =0A= # 3 "Xext/Includes.h" 2=0A= =0A= # 1 "Xext/GrDefs.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 4 "Xext/Includes.h" 2=0A= =0A= =0A= # 28 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XText/Includes.h" 1=0A= =0A= =0A= # 1 "XText/XtDefs.h" 1=0A= # 1 "/usr/X11R6/include/X11/Intrinsic.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/X11R6/include/X11/Xresource.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern char *Xpermalloc(=0A= =0A= unsigned int =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef int XrmQuark, *XrmQuarkList;=0A= =0A= =0A= typedef char *XrmString;=0A= =0A= =0A= =0A= extern XrmQuark XrmStringToQuark(=0A= =0A= const char* =0A= =0A= );=0A= =0A= extern XrmQuark XrmPermStringToQuark(=0A= =0A= const char* =0A= =0A= );=0A= =0A= =0A= extern XrmString XrmQuarkToString(=0A= =0A= XrmQuark =0A= =0A= );=0A= =0A= extern XrmQuark XrmUniqueQuark(=0A= =0A= void=0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef enum {XrmBindTightly, XrmBindLoosely} XrmBinding, = *XrmBindingList;=0A= =0A= extern void XrmStringToQuarkList(=0A= =0A= const char* ,=0A= XrmQuarkList =0A= =0A= );=0A= =0A= extern void XrmStringToBindingQuarkList(=0A= =0A= const char* ,=0A= XrmBindingList ,=0A= XrmQuarkList =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef XrmQuark XrmName;=0A= typedef XrmQuarkList XrmNameList;=0A= =0A= =0A= =0A= =0A= typedef XrmQuark XrmClass;=0A= typedef XrmQuarkList XrmClassList;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef XrmQuark XrmRepresentation;=0A= =0A= =0A= =0A= typedef struct {=0A= unsigned int size;=0A= XPointer addr;=0A= } XrmValue, *XrmValuePtr;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XrmHashBucketRec *XrmHashBucket;=0A= typedef XrmHashBucket *XrmHashTable;=0A= typedef XrmHashTable XrmSearchList[];=0A= typedef struct _XrmHashBucketRec *XrmDatabase;=0A= =0A= =0A= extern void XrmDestroyDatabase(=0A= =0A= XrmDatabase =0A= =0A= );=0A= =0A= extern void XrmQPutResource(=0A= =0A= XrmDatabase* ,=0A= XrmBindingList ,=0A= XrmQuarkList ,=0A= XrmRepresentation ,=0A= XrmValue* =0A= =0A= );=0A= =0A= extern void XrmPutResource(=0A= =0A= XrmDatabase* ,=0A= const char* ,=0A= const char* ,=0A= XrmValue* =0A= =0A= );=0A= =0A= extern void XrmQPutStringResource(=0A= =0A= XrmDatabase* ,=0A= XrmBindingList ,=0A= XrmQuarkList ,=0A= const char* =0A= =0A= );=0A= =0A= extern void XrmPutStringResource(=0A= =0A= XrmDatabase* ,=0A= const char* ,=0A= const char* =0A= =0A= );=0A= =0A= extern void XrmPutLineResource(=0A= =0A= XrmDatabase* ,=0A= const char* =0A= =0A= );=0A= =0A= extern int XrmQGetResource(=0A= =0A= XrmDatabase ,=0A= XrmNameList ,=0A= XrmClassList ,=0A= XrmRepresentation* ,=0A= XrmValue* =0A= =0A= );=0A= =0A= extern int XrmGetResource(=0A= =0A= XrmDatabase ,=0A= const char* ,=0A= const char* ,=0A= char** ,=0A= XrmValue* =0A= =0A= );=0A= =0A= extern int XrmQGetSearchList(=0A= =0A= XrmDatabase ,=0A= XrmNameList ,=0A= XrmClassList ,=0A= XrmSearchList ,=0A= int =0A= =0A= );=0A= =0A= extern int XrmQGetSearchResource(=0A= =0A= XrmSearchList ,=0A= XrmName ,=0A= XrmClass ,=0A= XrmRepresentation* ,=0A= XrmValue* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern void XrmSetDatabase(=0A= =0A= Display* ,=0A= XrmDatabase =0A= =0A= );=0A= =0A= extern XrmDatabase XrmGetDatabase(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern XrmDatabase XrmGetFileDatabase(=0A= =0A= const char* =0A= =0A= );=0A= =0A= extern int XrmCombineFileDatabase(=0A= =0A= const char* ,=0A= XrmDatabase* ,=0A= int =0A= =0A= );=0A= =0A= extern XrmDatabase XrmGetStringDatabase(=0A= =0A= const char* =0A= =0A= );=0A= =0A= extern void XrmPutFileDatabase(=0A= =0A= XrmDatabase ,=0A= const char* =0A= =0A= );=0A= =0A= extern void XrmMergeDatabases(=0A= =0A= XrmDatabase ,=0A= XrmDatabase* =0A= =0A= );=0A= =0A= extern void XrmCombineDatabase(=0A= =0A= XrmDatabase ,=0A= XrmDatabase* ,=0A= int =0A= =0A= );=0A= =0A= =0A= =0A= =0A= extern int XrmEnumerateDatabase(=0A= =0A= XrmDatabase ,=0A= XrmNameList ,=0A= XrmClassList ,=0A= int ,=0A= int (*)(=0A= =0A= XrmDatabase* ,=0A= XrmBindingList ,=0A= XrmQuarkList ,=0A= XrmRepresentation* ,=0A= XrmValue* ,=0A= XPointer =0A= =0A= ) ,=0A= XPointer =0A= =0A= );=0A= =0A= extern char *XrmLocaleOfDatabase(=0A= =0A= XrmDatabase =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef enum {=0A= XrmoptionNoArg, =0A= XrmoptionIsArg, =0A= XrmoptionStickyArg, =0A= XrmoptionSepArg, =0A= XrmoptionResArg, =0A= XrmoptionSkipArg, =0A= XrmoptionSkipLine, =0A= XrmoptionSkipNArgs =0A= =0A= } XrmOptionKind;=0A= =0A= typedef struct {=0A= char *option; =0A= char *specifier; =0A= XrmOptionKind argKind; =0A= XPointer value; =0A= } XrmOptionDescRec, *XrmOptionDescList;=0A= =0A= =0A= extern void XrmParseCommand(=0A= =0A= XrmDatabase* ,=0A= XrmOptionDescList ,=0A= int ,=0A= const char* ,=0A= int* ,=0A= char** =0A= =0A= );=0A= =0A= } =0A= =0A= =0A= =0A= # 59 "/usr/X11R6/include/X11/Intrinsic.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef char *String;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _WidgetRec *Widget;=0A= typedef Widget *WidgetList;=0A= typedef struct _WidgetClassRec *WidgetClass;=0A= typedef struct _CompositeRec *CompositeWidget;=0A= typedef struct _XtActionsRec *XtActionList;=0A= typedef struct _XtEventRec *XtEventTable;=0A= =0A= typedef struct _XtAppStruct *XtAppContext;=0A= typedef unsigned long XtValueMask;=0A= typedef unsigned long XtIntervalId;=0A= typedef unsigned long XtInputId;=0A= typedef unsigned long XtWorkProcId;=0A= typedef unsigned long XtSignalId;=0A= typedef unsigned int XtGeometryMask;=0A= typedef unsigned long XtGCMask; =0A= typedef unsigned long Pixel; =0A= typedef int XtCacheType;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef char Boolean;=0A= typedef long XtArgVal;=0A= typedef unsigned char XtEnum;=0A= =0A= =0A= typedef unsigned int Cardinal;=0A= typedef unsigned short Dimension; =0A= typedef short Position; =0A= =0A= =0A= typedef void* XtPointer;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef XtPointer Opaque;=0A= =0A= # 1 "/usr/X11R6/include/X11/Core.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _WidgetClassRec *CoreWidgetClass;=0A= typedef struct _WidgetRec *CoreWidget;=0A= extern WidgetClass coreWidgetClass;=0A= =0A= =0A= extern WidgetClass widgetClass;=0A= =0A= =0A= =0A= =0A= =0A= # 192 "/usr/X11R6/include/X11/Intrinsic.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/Composite.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _CompositeClassRec *CompositeWidgetClass;=0A= =0A= typedef Cardinal (*XtOrderProc)(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern "C" { =0A= =0A= extern void XtManageChildren(=0A= =0A= WidgetList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtManageChild(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtUnmanageChildren(=0A= =0A= WidgetList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtUnmanageChild(=0A= =0A= Widget =0A= =0A= );=0A= =0A= typedef void (*XtDoChangeProc)(=0A= =0A= Widget ,=0A= WidgetList ,=0A= Cardinal * ,=0A= WidgetList ,=0A= Cardinal * ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtChangeManagedSet(=0A= =0A= WidgetList ,=0A= Cardinal ,=0A= XtDoChangeProc ,=0A= XtPointer ,=0A= WidgetList ,=0A= Cardinal =0A= =0A= );=0A= =0A= } =0A= =0A= =0A= extern WidgetClass compositeWidgetClass;=0A= =0A= =0A= =0A= =0A= # 193 "/usr/X11R6/include/X11/Intrinsic.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/Constraint.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _ConstraintClassRec *ConstraintWidgetClass;=0A= =0A= =0A= extern WidgetClass constraintWidgetClass;=0A= =0A= =0A= =0A= =0A= # 194 "/usr/X11R6/include/X11/Intrinsic.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/Object.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _ObjectRec *Object;=0A= typedef struct _ObjectClassRec *ObjectClass;=0A= =0A= =0A= extern WidgetClass objectClass;=0A= =0A= =0A= =0A= # 195 "/usr/X11R6/include/X11/Intrinsic.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/RectObj.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _RectObjRec *RectObj;=0A= typedef struct _RectObjClassRec *RectObjClass;=0A= =0A= =0A= extern WidgetClass rectObjClass;=0A= =0A= =0A= =0A= # 196 "/usr/X11R6/include/X11/Intrinsic.h" 2=0A= =0A= =0A= typedef struct _TranslationData *XtTranslations;=0A= typedef struct _TranslationData *XtAccelerators;=0A= typedef unsigned int Modifiers;=0A= =0A= typedef void (*XtActionProc)(=0A= =0A= Widget ,=0A= XEvent* ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef XtActionProc* XtBoundActions;=0A= =0A= typedef struct _XtActionsRec{=0A= String string;=0A= XtActionProc proc;=0A= } XtActionsRec;=0A= =0A= typedef enum {=0A= =0A= =0A= XtAddress, =0A= XtBaseOffset, =0A= XtImmediate, =0A= XtResourceString, =0A= XtResourceQuark, =0A= XtWidgetBaseOffset, =0A= XtProcedureArg =0A= } XtAddressMode;=0A= =0A= typedef struct {=0A= XtAddressMode address_mode;=0A= XtPointer address_id;=0A= Cardinal size;=0A= } XtConvertArgRec, *XtConvertArgList;=0A= =0A= typedef void (*XtConvertArgProc)(=0A= =0A= Widget ,=0A= Cardinal* ,=0A= XrmValue* =0A= =0A= );=0A= =0A= typedef struct {=0A= XtGeometryMask request_mode;=0A= Position x, y;=0A= Dimension width, height, border_width;=0A= Widget sibling;=0A= int stack_mode; =0A= } XtWidgetGeometry;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef void (*XtConverter)( =0A= =0A= XrmValue* ,=0A= Cardinal* ,=0A= XrmValue* ,=0A= XrmValue* =0A= =0A= );=0A= =0A= typedef Boolean (*XtTypeConverter)(=0A= =0A= Display* ,=0A= XrmValue* ,=0A= Cardinal* ,=0A= XrmValue* ,=0A= XrmValue* ,=0A= XtPointer* =0A= =0A= );=0A= =0A= typedef void (*XtDestructor)(=0A= =0A= XtAppContext ,=0A= XrmValue* ,=0A= XtPointer ,=0A= XrmValue* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef Opaque XtCacheRef;=0A= =0A= typedef Opaque XtActionHookId;=0A= =0A= typedef void (*XtActionHookProc)(=0A= =0A= Widget ,=0A= XtPointer ,=0A= String ,=0A= XEvent* ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef unsigned long XtBlockHookId;=0A= =0A= typedef void (*XtBlockHookProc)(=0A= =0A= XtPointer =0A= =0A= );=0A= =0A= typedef void (*XtKeyProc)(=0A= =0A= Display* ,=0A= KeyCode ,=0A= Modifiers ,=0A= Modifiers* ,=0A= KeySym* =0A= =0A= );=0A= =0A= typedef void (*XtCaseProc)(=0A= =0A= Display* ,=0A= KeySym ,=0A= KeySym* ,=0A= KeySym* =0A= =0A= );=0A= =0A= typedef void (*XtEventHandler)(=0A= =0A= Widget ,=0A= XtPointer ,=0A= XEvent* ,=0A= Boolean* =0A= =0A= );=0A= typedef unsigned long EventMask;=0A= =0A= typedef enum {XtListHead, XtListTail } XtListPosition;=0A= =0A= typedef unsigned long XtInputMask;=0A= =0A= =0A= =0A= =0A= =0A= typedef void (*XtTimerCallbackProc)(=0A= =0A= XtPointer ,=0A= XtIntervalId* =0A= =0A= );=0A= =0A= typedef void (*XtInputCallbackProc)(=0A= =0A= XtPointer ,=0A= int* ,=0A= XtInputId* =0A= =0A= );=0A= =0A= typedef void (*XtSignalCallbackProc)(=0A= =0A= XtPointer ,=0A= XtSignalId* =0A= =0A= );=0A= =0A= typedef struct {=0A= String name;=0A= XtArgVal value;=0A= } Arg, *ArgList;=0A= =0A= typedef XtPointer XtVarArgsList;=0A= =0A= typedef void (*XtCallbackProc)(=0A= =0A= Widget ,=0A= XtPointer , =0A= XtPointer =0A= =0A= );=0A= =0A= typedef struct _XtCallbackRec {=0A= XtCallbackProc callback;=0A= XtPointer closure;=0A= } XtCallbackRec, *XtCallbackList;=0A= =0A= typedef enum {=0A= XtCallbackNoList,=0A= XtCallbackHasNone,=0A= XtCallbackHasSome=0A= } XtCallbackStatus;=0A= =0A= typedef enum {=0A= XtGeometryYes, =0A= XtGeometryNo, =0A= XtGeometryAlmost, =0A= XtGeometryDone =0A= } XtGeometryResult;=0A= =0A= typedef enum {XtGrabNone, XtGrabNonexclusive, XtGrabExclusive} = XtGrabKind;=0A= =0A= typedef struct {=0A= Widget shell_widget;=0A= Widget enable_widget;=0A= } XtPopdownIDRec, *XtPopdownID;=0A= =0A= typedef struct _XtResource {=0A= String resource_name; =0A= String resource_class; =0A= String resource_type; =0A= Cardinal resource_size; =0A= Cardinal resource_offset; =0A= String default_type; =0A= XtPointer default_addr; =0A= } XtResource, *XtResourceList;=0A= =0A= typedef void (*XtResourceDefaultProc)(=0A= =0A= Widget ,=0A= int ,=0A= XrmValue* =0A= =0A= );=0A= =0A= typedef String (*XtLanguageProc)(=0A= =0A= Display* ,=0A= String ,=0A= XtPointer =0A= =0A= );=0A= =0A= typedef void (*XtErrorMsgHandler)(=0A= =0A= String ,=0A= String ,=0A= String ,=0A= String ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef void (*XtErrorHandler)(=0A= =0A= String =0A= =0A= );=0A= =0A= typedef void (*XtCreatePopupChildProc)(=0A= =0A= Widget =0A= =0A= );=0A= =0A= typedef Boolean (*XtWorkProc)(=0A= =0A= XtPointer =0A= =0A= );=0A= =0A= typedef struct {=0A= char match;=0A= String substitution;=0A= } SubstitutionRec, *Substitution;=0A= =0A= typedef Boolean (*XtFilePredicate)(=0A= =0A= String =0A= =0A= );=0A= =0A= typedef XtPointer XtRequestId;=0A= =0A= typedef Boolean (*XtConvertSelectionProc)(=0A= =0A= Widget ,=0A= Atom* ,=0A= Atom* ,=0A= Atom* ,=0A= XtPointer* ,=0A= unsigned long* ,=0A= int* =0A= =0A= );=0A= =0A= typedef void (*XtLoseSelectionProc)(=0A= =0A= Widget ,=0A= Atom* =0A= =0A= );=0A= =0A= typedef void (*XtSelectionDoneProc)(=0A= =0A= Widget ,=0A= Atom* ,=0A= Atom* =0A= =0A= );=0A= =0A= typedef void (*XtSelectionCallbackProc)(=0A= =0A= Widget ,=0A= XtPointer ,=0A= Atom* ,=0A= Atom* ,=0A= XtPointer ,=0A= unsigned long* ,=0A= int* =0A= =0A= );=0A= =0A= typedef void (*XtLoseSelectionIncrProc)(=0A= =0A= Widget ,=0A= Atom* ,=0A= XtPointer =0A= =0A= );=0A= =0A= typedef void (*XtSelectionDoneIncrProc)(=0A= =0A= Widget ,=0A= Atom* ,=0A= Atom* ,=0A= XtRequestId* ,=0A= XtPointer =0A= =0A= );=0A= =0A= typedef Boolean (*XtConvertSelectionIncrProc)(=0A= =0A= Widget ,=0A= Atom* ,=0A= Atom* ,=0A= Atom* ,=0A= XtPointer* ,=0A= unsigned long* ,=0A= int* ,=0A= unsigned long* ,=0A= XtPointer ,=0A= XtRequestId* =0A= =0A= );=0A= =0A= typedef void (*XtCancelConvertSelectionProc)(=0A= =0A= Widget ,=0A= Atom* ,=0A= Atom* ,=0A= XtRequestId* ,=0A= XtPointer =0A= =0A= );=0A= =0A= typedef Boolean (*XtEventDispatchProc)(=0A= =0A= XEvent* =0A= =0A= );=0A= =0A= typedef void (*XtExtensionSelectProc)(=0A= =0A= Widget ,=0A= int* ,=0A= XtPointer* ,=0A= int ,=0A= XtPointer =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= extern Boolean XtConvertAndStore(=0A= =0A= Widget ,=0A= const char* ,=0A= XrmValue* ,=0A= const char* ,=0A= XrmValue* =0A= =0A= );=0A= =0A= extern Boolean XtCallConverter(=0A= =0A= Display* ,=0A= XtTypeConverter ,=0A= XrmValuePtr ,=0A= Cardinal ,=0A= XrmValuePtr ,=0A= XrmValue* ,=0A= XtCacheRef* =0A= =0A= );=0A= =0A= extern Boolean XtDispatchEvent(=0A= =0A= XEvent* =0A= =0A= );=0A= =0A= extern Boolean XtCallAcceptFocus(=0A= =0A= Widget ,=0A= Time* =0A= =0A= );=0A= =0A= extern Boolean XtPeekEvent( =0A= =0A= XEvent* =0A= =0A= );=0A= =0A= extern Boolean XtAppPeekEvent(=0A= =0A= XtAppContext ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern Boolean XtIsSubclass(=0A= =0A= Widget ,=0A= WidgetClass =0A= =0A= );=0A= =0A= extern Boolean XtIsObject(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Boolean _XtCheckSubclassFlag( =0A= =0A= Widget ,=0A= XtEnum =0A= =0A= );=0A= =0A= extern Boolean _XtIsSubclassOf( =0A= =0A= Widget ,=0A= WidgetClass ,=0A= WidgetClass ,=0A= XtEnum =0A= =0A= );=0A= =0A= extern Boolean XtIsManaged(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Boolean XtIsRealized(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Boolean XtIsSensitive(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Boolean XtOwnSelection(=0A= =0A= Widget ,=0A= Atom ,=0A= Time ,=0A= XtConvertSelectionProc ,=0A= XtLoseSelectionProc ,=0A= XtSelectionDoneProc =0A= =0A= );=0A= =0A= extern Boolean XtOwnSelectionIncremental(=0A= =0A= Widget ,=0A= Atom ,=0A= Time ,=0A= XtConvertSelectionIncrProc ,=0A= XtLoseSelectionIncrProc ,=0A= XtSelectionDoneIncrProc ,=0A= XtCancelConvertSelectionProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern XtGeometryResult XtMakeResizeRequest(=0A= =0A= Widget ,=0A= Dimension ,=0A= Dimension ,=0A= Dimension* ,=0A= Dimension* =0A= =0A= );=0A= =0A= extern void XtTranslateCoords(=0A= =0A= Widget ,=0A= Position ,=0A= Position ,=0A= Position* ,=0A= Position* =0A= =0A= );=0A= =0A= extern KeySym* XtGetKeysymTable(=0A= =0A= Display* ,=0A= KeyCode* ,=0A= int* =0A= =0A= );=0A= =0A= extern void XtKeysymToKeycodeList(=0A= =0A= Display* ,=0A= KeySym ,=0A= KeyCode** ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern void XtStringConversionWarning( =0A= =0A= const char* ,=0A= const char* =0A= =0A= );=0A= =0A= extern void XtDisplayStringConversionWarning(=0A= =0A= Display* ,=0A= const char* ,=0A= const char* =0A= =0A= );=0A= =0A= =0A= extern XtConvertArgRec const colorConvertArgs[];=0A= extern XtConvertArgRec const screenConvertArg[];=0A= =0A= =0A= =0A= =0A= =0A= extern void XtAppAddConverter( =0A= =0A= XtAppContext ,=0A= const char* ,=0A= const char* ,=0A= XtConverter ,=0A= XtConvertArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtAddConverter( =0A= =0A= const char* ,=0A= const char* ,=0A= XtConverter ,=0A= XtConvertArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtSetTypeConverter(=0A= =0A= const char* ,=0A= const char* ,=0A= XtTypeConverter ,=0A= XtConvertArgList ,=0A= Cardinal ,=0A= XtCacheType ,=0A= XtDestructor =0A= =0A= );=0A= =0A= extern void XtAppSetTypeConverter(=0A= =0A= XtAppContext ,=0A= const char* ,=0A= const char* ,=0A= XtTypeConverter ,=0A= XtConvertArgList ,=0A= Cardinal ,=0A= XtCacheType ,=0A= XtDestructor =0A= =0A= );=0A= =0A= extern void XtConvert( =0A= =0A= Widget ,=0A= const char* ,=0A= XrmValue* ,=0A= const char* ,=0A= XrmValue* =0A= =0A= );=0A= =0A= extern void XtDirectConvert( =0A= =0A= XtConverter ,=0A= XrmValuePtr ,=0A= Cardinal ,=0A= XrmValuePtr ,=0A= XrmValue* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern XtTranslations XtParseTranslationTable(=0A= =0A= const char* =0A= =0A= );=0A= =0A= extern XtAccelerators XtParseAcceleratorTable(=0A= =0A= const char* =0A= =0A= );=0A= =0A= extern void XtOverrideTranslations(=0A= =0A= Widget ,=0A= XtTranslations =0A= =0A= );=0A= =0A= extern void XtAugmentTranslations(=0A= =0A= Widget ,=0A= XtTranslations =0A= =0A= );=0A= =0A= extern void XtInstallAccelerators(=0A= =0A= Widget ,=0A= Widget =0A= =0A= );=0A= =0A= extern void XtInstallAllAccelerators(=0A= =0A= Widget ,=0A= Widget =0A= =0A= );=0A= =0A= extern void XtUninstallTranslations(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtAppAddActions(=0A= =0A= XtAppContext ,=0A= XtActionList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtAddActions( =0A= =0A= XtActionList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern XtActionHookId XtAppAddActionHook(=0A= =0A= XtAppContext ,=0A= XtActionHookProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveActionHook(=0A= =0A= XtActionHookId =0A= =0A= );=0A= =0A= extern void XtGetActionList(=0A= =0A= WidgetClass ,=0A= XtActionList* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern void XtCallActionProc(=0A= =0A= Widget ,=0A= const char* ,=0A= XEvent* ,=0A= String* ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtRegisterGrabAction(=0A= =0A= XtActionProc ,=0A= Boolean ,=0A= unsigned int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern void XtSetMultiClickTime(=0A= =0A= Display* ,=0A= int =0A= =0A= );=0A= =0A= extern int XtGetMultiClickTime(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern KeySym XtGetActionKeysym(=0A= =0A= XEvent* ,=0A= Modifiers* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern void XtTranslateKeycode(=0A= =0A= Display* ,=0A= KeyCode ,=0A= Modifiers ,=0A= Modifiers* ,=0A= KeySym* =0A= =0A= );=0A= =0A= extern void XtTranslateKey(=0A= =0A= Display* ,=0A= KeyCode ,=0A= Modifiers ,=0A= Modifiers* ,=0A= KeySym* =0A= =0A= );=0A= =0A= extern void XtSetKeyTranslator(=0A= =0A= Display* ,=0A= XtKeyProc =0A= =0A= );=0A= =0A= extern void XtRegisterCaseConverter(=0A= =0A= Display* ,=0A= XtCaseProc ,=0A= KeySym ,=0A= KeySym =0A= =0A= );=0A= =0A= extern void XtConvertCase(=0A= =0A= Display* ,=0A= KeySym ,=0A= KeySym* ,=0A= KeySym* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern void XtAddEventHandler(=0A= =0A= Widget ,=0A= EventMask ,=0A= Boolean ,=0A= XtEventHandler ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveEventHandler(=0A= =0A= Widget ,=0A= EventMask ,=0A= Boolean ,=0A= XtEventHandler ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtAddRawEventHandler(=0A= =0A= Widget ,=0A= EventMask ,=0A= Boolean ,=0A= XtEventHandler ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveRawEventHandler(=0A= =0A= Widget ,=0A= EventMask ,=0A= Boolean ,=0A= XtEventHandler ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtInsertEventHandler(=0A= =0A= Widget ,=0A= EventMask ,=0A= Boolean ,=0A= XtEventHandler ,=0A= XtPointer ,=0A= XtListPosition =0A= =0A= );=0A= =0A= extern void XtInsertRawEventHandler(=0A= =0A= Widget ,=0A= EventMask ,=0A= Boolean ,=0A= XtEventHandler ,=0A= XtPointer ,=0A= XtListPosition =0A= =0A= );=0A= =0A= extern XtEventDispatchProc XtSetEventDispatcher(=0A= =0A= Display* ,=0A= int ,=0A= XtEventDispatchProc =0A= =0A= );=0A= =0A= extern Boolean XtDispatchEventToWidget(=0A= =0A= Widget ,=0A= XEvent* =0A= =0A= );=0A= =0A= extern void XtInsertEventTypeHandler(=0A= =0A= Widget ,=0A= int ,=0A= XtPointer ,=0A= XtEventHandler ,=0A= XtPointer ,=0A= XtListPosition =0A= =0A= );=0A= =0A= extern void XtRemoveEventTypeHandler(=0A= =0A= Widget ,=0A= int ,=0A= XtPointer ,=0A= XtEventHandler ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern EventMask XtBuildEventMask(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtRegisterExtensionSelector(=0A= =0A= Display* ,=0A= int ,=0A= int ,=0A= XtExtensionSelectProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtAddGrab(=0A= =0A= Widget ,=0A= Boolean ,=0A= Boolean =0A= =0A= );=0A= =0A= extern void XtRemoveGrab(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtProcessEvent( =0A= =0A= XtInputMask =0A= =0A= );=0A= =0A= extern void XtAppProcessEvent(=0A= =0A= XtAppContext ,=0A= XtInputMask =0A= =0A= );=0A= =0A= extern void XtMainLoop( =0A= =0A= void=0A= =0A= );=0A= =0A= extern void XtAppMainLoop(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern void XtAddExposureToRegion(=0A= =0A= XEvent* ,=0A= Region =0A= =0A= );=0A= =0A= extern void XtSetKeyboardFocus(=0A= =0A= Widget ,=0A= Widget =0A= =0A= );=0A= =0A= extern Widget XtGetKeyboardFocusWidget(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern XEvent* XtLastEventProcessed(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern Time XtLastTimestampProcessed(=0A= =0A= Display* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern XtIntervalId XtAddTimeOut( =0A= =0A= unsigned long ,=0A= XtTimerCallbackProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern XtIntervalId XtAppAddTimeOut(=0A= =0A= XtAppContext ,=0A= unsigned long ,=0A= XtTimerCallbackProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveTimeOut(=0A= =0A= XtIntervalId =0A= =0A= );=0A= =0A= extern XtInputId XtAddInput( =0A= =0A= int ,=0A= XtPointer ,=0A= XtInputCallbackProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern XtInputId XtAppAddInput(=0A= =0A= XtAppContext ,=0A= int ,=0A= XtPointer ,=0A= XtInputCallbackProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveInput(=0A= =0A= XtInputId =0A= =0A= );=0A= =0A= extern XtSignalId XtAppAddSignal(=0A= =0A= XtAppContext ,=0A= XtSignalCallbackProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveSignal(=0A= =0A= XtSignalId =0A= =0A= );=0A= =0A= extern void XtNoticeSignal(=0A= =0A= XtSignalId =0A= =0A= );=0A= =0A= extern void XtNextEvent( =0A= =0A= XEvent* =0A= =0A= );=0A= =0A= extern void XtAppNextEvent(=0A= =0A= XtAppContext ,=0A= XEvent* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern XtInputMask XtPending( =0A= =0A= void=0A= =0A= );=0A= =0A= extern XtInputMask XtAppPending(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern XtBlockHookId XtAppAddBlockHook(=0A= =0A= XtAppContext ,=0A= XtBlockHookProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveBlockHook(=0A= =0A= XtBlockHookId =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern void XtRealizeWidget(=0A= =0A= Widget =0A= =0A= );=0A= =0A= void XtUnrealizeWidget(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtDestroyWidget(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtSetSensitive(=0A= =0A= Widget ,=0A= Boolean =0A= =0A= );=0A= =0A= extern void XtSetMappedWhenManaged(=0A= =0A= Widget ,=0A= Boolean =0A= =0A= );=0A= =0A= extern Widget XtNameToWidget(=0A= =0A= Widget ,=0A= const char* =0A= =0A= );=0A= =0A= extern Widget XtWindowToWidget(=0A= =0A= Display* ,=0A= Window =0A= =0A= );=0A= =0A= extern XtPointer XtGetClassExtension(=0A= =0A= WidgetClass ,=0A= Cardinal ,=0A= XrmQuark ,=0A= long ,=0A= Cardinal =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern ArgList XtMergeArgLists(=0A= =0A= ArgList ,=0A= Cardinal ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern XtVarArgsList XtVaCreateArgsList(=0A= =0A= XtPointer , ...=0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern Display *XtDisplay(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Display *XtDisplayOfObject(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Screen *XtScreen(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Screen *XtScreenOfObject(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Window XtWindow(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Window XtWindowOfObject(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern String XtName(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern WidgetClass XtSuperclass(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern WidgetClass XtClass(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern Widget XtParent(=0A= =0A= Widget =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern void XtAddCallback(=0A= =0A= Widget ,=0A= const char* ,=0A= XtCallbackProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveCallback(=0A= =0A= Widget ,=0A= const char* ,=0A= XtCallbackProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtAddCallbacks(=0A= =0A= Widget ,=0A= const char* ,=0A= XtCallbackList =0A= =0A= );=0A= =0A= extern void XtRemoveCallbacks(=0A= =0A= Widget ,=0A= const char* ,=0A= XtCallbackList =0A= =0A= );=0A= =0A= extern void XtRemoveAllCallbacks(=0A= =0A= Widget ,=0A= const char* =0A= =0A= );=0A= =0A= =0A= extern void XtCallCallbacks(=0A= =0A= Widget ,=0A= const char* ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtCallCallbackList(=0A= =0A= Widget ,=0A= XtCallbackList ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern XtCallbackStatus XtHasCallbacks(=0A= =0A= Widget ,=0A= const char* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern XtGeometryResult XtMakeGeometryRequest(=0A= =0A= Widget ,=0A= XtWidgetGeometry* ,=0A= XtWidgetGeometry* =0A= =0A= );=0A= =0A= extern XtGeometryResult XtQueryGeometry(=0A= =0A= Widget ,=0A= XtWidgetGeometry* ,=0A= XtWidgetGeometry* =0A= =0A= );=0A= =0A= extern Widget XtCreatePopupShell(=0A= =0A= const char* ,=0A= WidgetClass ,=0A= Widget ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern Widget XtVaCreatePopupShell(=0A= =0A= const char* ,=0A= WidgetClass ,=0A= Widget ,=0A= ...=0A= =0A= );=0A= =0A= extern void XtPopup(=0A= =0A= Widget ,=0A= XtGrabKind =0A= =0A= );=0A= =0A= extern void XtPopupSpringLoaded(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtCallbackNone(=0A= =0A= Widget ,=0A= XtPointer ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtCallbackNonexclusive(=0A= =0A= Widget ,=0A= XtPointer ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtCallbackExclusive(=0A= =0A= Widget ,=0A= XtPointer ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtPopdown(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtCallbackPopdown(=0A= =0A= Widget ,=0A= XtPointer ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtMenuPopupAction(=0A= =0A= Widget ,=0A= XEvent* ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern Widget XtCreateWidget(=0A= =0A= const char* ,=0A= WidgetClass ,=0A= Widget ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern Widget XtCreateManagedWidget(=0A= =0A= const char* ,=0A= WidgetClass ,=0A= Widget ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern Widget XtVaCreateWidget(=0A= =0A= const char* ,=0A= WidgetClass ,=0A= Widget ,=0A= ...=0A= =0A= );=0A= =0A= extern Widget XtVaCreateManagedWidget(=0A= =0A= const char* ,=0A= WidgetClass ,=0A= Widget ,=0A= ...=0A= =0A= );=0A= =0A= extern Widget XtCreateApplicationShell( =0A= =0A= const char* ,=0A= WidgetClass ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern Widget XtAppCreateShell(=0A= =0A= const char* ,=0A= const char* ,=0A= WidgetClass ,=0A= Display* ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern Widget XtVaAppCreateShell(=0A= =0A= const char* ,=0A= const char* ,=0A= WidgetClass ,=0A= Display* ,=0A= ...=0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern void XtToolkitInitialize(=0A= =0A= void=0A= =0A= );=0A= =0A= extern XtLanguageProc XtSetLanguageProc(=0A= =0A= XtAppContext ,=0A= XtLanguageProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtDisplayInitialize(=0A= =0A= XtAppContext ,=0A= Display* ,=0A= const char* ,=0A= const char* ,=0A= XrmOptionDescRec* ,=0A= Cardinal ,=0A= int* ,=0A= char** =0A= =0A= );=0A= =0A= extern Widget XtOpenApplication(=0A= =0A= XtAppContext* ,=0A= const char* ,=0A= XrmOptionDescList ,=0A= Cardinal ,=0A= int* ,=0A= String* ,=0A= String* ,=0A= WidgetClass ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern Widget XtVaOpenApplication(=0A= =0A= XtAppContext* ,=0A= const char* ,=0A= XrmOptionDescList ,=0A= Cardinal ,=0A= int* ,=0A= String* ,=0A= String* ,=0A= WidgetClass ,=0A= ...=0A= =0A= );=0A= =0A= extern Widget XtAppInitialize( =0A= =0A= XtAppContext* ,=0A= const char* ,=0A= XrmOptionDescList ,=0A= Cardinal ,=0A= int* ,=0A= String* ,=0A= String* ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern Widget XtVaAppInitialize( =0A= =0A= XtAppContext* ,=0A= const char* ,=0A= XrmOptionDescList ,=0A= Cardinal ,=0A= int* ,=0A= String* ,=0A= String* ,=0A= ...=0A= =0A= );=0A= =0A= extern Widget XtInitialize( =0A= =0A= const char* ,=0A= const char* ,=0A= XrmOptionDescRec* ,=0A= Cardinal ,=0A= int* ,=0A= char** =0A= =0A= );=0A= =0A= extern Display *XtOpenDisplay(=0A= =0A= XtAppContext ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= XrmOptionDescRec* ,=0A= Cardinal ,=0A= int* ,=0A= char** =0A= =0A= );=0A= =0A= extern XtAppContext XtCreateApplicationContext(=0A= =0A= void=0A= =0A= );=0A= =0A= extern void XtAppSetFallbackResources(=0A= =0A= XtAppContext ,=0A= String* =0A= =0A= );=0A= =0A= extern void XtDestroyApplicationContext(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern void XtInitializeWidgetClass(=0A= =0A= WidgetClass =0A= =0A= );=0A= =0A= extern XtAppContext XtWidgetToApplicationContext(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern XtAppContext XtDisplayToApplicationContext(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern XrmDatabase XtDatabase(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern XrmDatabase XtScreenDatabase(=0A= =0A= Screen* =0A= =0A= );=0A= =0A= extern void XtCloseDisplay(=0A= =0A= Display* =0A= =0A= );=0A= =0A= extern void XtGetApplicationResources(=0A= =0A= Widget ,=0A= XtPointer ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtVaGetApplicationResources(=0A= =0A= Widget ,=0A= XtPointer ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ...=0A= =0A= );=0A= =0A= extern void XtGetSubresources(=0A= =0A= Widget ,=0A= XtPointer ,=0A= const char* ,=0A= const char* ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtVaGetSubresources(=0A= =0A= Widget ,=0A= XtPointer ,=0A= const char* ,=0A= const char* ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ...=0A= =0A= );=0A= =0A= extern void XtSetValues(=0A= =0A= Widget ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtVaSetValues(=0A= =0A= Widget ,=0A= ...=0A= =0A= );=0A= =0A= extern void XtGetValues(=0A= =0A= Widget ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtVaGetValues(=0A= =0A= Widget ,=0A= ...=0A= =0A= );=0A= =0A= extern void XtSetSubvalues(=0A= =0A= XtPointer ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtVaSetSubvalues(=0A= =0A= XtPointer ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ...=0A= =0A= );=0A= =0A= extern void XtGetSubvalues(=0A= =0A= XtPointer ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ArgList ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtVaGetSubvalues(=0A= =0A= XtPointer ,=0A= XtResourceList ,=0A= Cardinal ,=0A= ...=0A= =0A= );=0A= =0A= extern void XtGetResourceList(=0A= =0A= WidgetClass ,=0A= XtResourceList* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern void XtGetConstraintResourceList(=0A= =0A= WidgetClass ,=0A= XtResourceList* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 2076 "/usr/X11R6/include/X11/Intrinsic.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _XtCheckpointTokenRec {=0A= int save_type;=0A= int interact_style;=0A= Boolean shutdown;=0A= Boolean fast;=0A= Boolean cancel_shutdown;=0A= int phase;=0A= int interact_dialog_type; =0A= Boolean request_cancel; =0A= Boolean request_next_phase; =0A= Boolean save_success; =0A= int type; =0A= Widget widget; =0A= } XtCheckpointTokenRec, *XtCheckpointToken;=0A= =0A= XtCheckpointToken XtSessionGetToken(=0A= =0A= Widget =0A= =0A= );=0A= =0A= void XtSessionReturnToken(=0A= =0A= XtCheckpointToken =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern XtErrorMsgHandler XtAppSetErrorMsgHandler(=0A= =0A= XtAppContext ,=0A= XtErrorMsgHandler =0A= =0A= );=0A= =0A= extern void XtSetErrorMsgHandler( =0A= =0A= XtErrorMsgHandler =0A= =0A= );=0A= =0A= extern XtErrorMsgHandler XtAppSetWarningMsgHandler(=0A= =0A= XtAppContext ,=0A= XtErrorMsgHandler =0A= =0A= );=0A= =0A= extern void XtSetWarningMsgHandler( =0A= =0A= XtErrorMsgHandler =0A= =0A= );=0A= =0A= extern void XtAppErrorMsg(=0A= =0A= XtAppContext ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern void XtErrorMsg( =0A= =0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern void XtAppWarningMsg(=0A= =0A= XtAppContext ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern void XtWarningMsg( =0A= =0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= String* ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern XtErrorHandler XtAppSetErrorHandler(=0A= =0A= XtAppContext ,=0A= XtErrorHandler =0A= =0A= );=0A= =0A= extern void XtSetErrorHandler( =0A= =0A= XtErrorHandler =0A= =0A= );=0A= =0A= extern XtErrorHandler XtAppSetWarningHandler(=0A= =0A= XtAppContext ,=0A= XtErrorHandler =0A= =0A= );=0A= =0A= extern void XtSetWarningHandler( =0A= =0A= XtErrorHandler =0A= =0A= );=0A= =0A= extern void XtAppError(=0A= =0A= XtAppContext ,=0A= const char* =0A= =0A= );=0A= =0A= extern void XtError( =0A= =0A= const char* =0A= =0A= );=0A= =0A= extern void XtAppWarning(=0A= =0A= XtAppContext ,=0A= const char* =0A= =0A= );=0A= =0A= extern void XtWarning( =0A= =0A= const char* =0A= =0A= );=0A= =0A= extern XrmDatabase *XtAppGetErrorDatabase(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern XrmDatabase *XtGetErrorDatabase( =0A= =0A= void=0A= =0A= );=0A= =0A= extern void XtAppGetErrorDatabaseText(=0A= =0A= XtAppContext ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= String ,=0A= int ,=0A= XrmDatabase =0A= =0A= );=0A= =0A= extern void XtGetErrorDatabaseText( =0A= =0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= String ,=0A= int =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern char *XtMalloc(=0A= =0A= Cardinal =0A= =0A= );=0A= =0A= extern char *XtCalloc(=0A= =0A= Cardinal ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern char *XtRealloc(=0A= =0A= char* ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern void XtFree(=0A= =0A= char* =0A= =0A= );=0A= =0A= # 2359 "/usr/X11R6/include/X11/Intrinsic.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern XtWorkProcId XtAddWorkProc( =0A= =0A= XtWorkProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern XtWorkProcId XtAppAddWorkProc(=0A= =0A= XtAppContext ,=0A= XtWorkProc ,=0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtRemoveWorkProc(=0A= =0A= XtWorkProcId =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern GC XtGetGC(=0A= =0A= Widget ,=0A= XtGCMask ,=0A= XGCValues* =0A= =0A= );=0A= =0A= extern GC XtAllocateGC(=0A= =0A= Widget ,=0A= Cardinal ,=0A= XtGCMask ,=0A= XGCValues* ,=0A= XtGCMask ,=0A= XtGCMask =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= extern void XtDestroyGC( =0A= =0A= GC =0A= =0A= );=0A= =0A= extern void XtReleaseGC(=0A= =0A= Widget ,=0A= GC =0A= =0A= );=0A= =0A= =0A= =0A= extern void XtAppReleaseCacheRefs(=0A= =0A= XtAppContext ,=0A= XtCacheRef* =0A= =0A= );=0A= =0A= extern void XtCallbackReleaseCacheRef(=0A= =0A= Widget ,=0A= XtPointer , =0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtCallbackReleaseCacheRefList(=0A= =0A= Widget ,=0A= XtPointer , =0A= XtPointer =0A= =0A= );=0A= =0A= extern void XtSetWMColormapWindows(=0A= =0A= Widget ,=0A= Widget* ,=0A= Cardinal =0A= =0A= );=0A= =0A= extern String XtFindFile(=0A= =0A= const char* ,=0A= Substitution ,=0A= Cardinal ,=0A= XtFilePredicate =0A= =0A= );=0A= =0A= extern String XtResolvePathname(=0A= =0A= Display* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= const char* ,=0A= Substitution ,=0A= Cardinal ,=0A= XtFilePredicate =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern void XtDisownSelection(=0A= =0A= Widget ,=0A= Atom ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtGetSelectionValue(=0A= =0A= Widget ,=0A= Atom ,=0A= Atom ,=0A= XtSelectionCallbackProc ,=0A= XtPointer ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtGetSelectionValues(=0A= =0A= Widget ,=0A= Atom ,=0A= Atom* ,=0A= int ,=0A= XtSelectionCallbackProc ,=0A= XtPointer* ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtAppSetSelectionTimeout(=0A= =0A= XtAppContext ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern void XtSetSelectionTimeout( =0A= =0A= unsigned long =0A= =0A= );=0A= =0A= extern unsigned long XtAppGetSelectionTimeout(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern unsigned long XtGetSelectionTimeout( =0A= =0A= void=0A= =0A= );=0A= =0A= extern XSelectionRequestEvent *XtGetSelectionRequest(=0A= =0A= Widget ,=0A= Atom ,=0A= XtRequestId =0A= =0A= );=0A= =0A= extern void XtGetSelectionValueIncremental(=0A= =0A= Widget ,=0A= Atom ,=0A= Atom ,=0A= XtSelectionCallbackProc ,=0A= XtPointer ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtGetSelectionValuesIncremental(=0A= =0A= Widget ,=0A= Atom ,=0A= Atom* ,=0A= int ,=0A= XtSelectionCallbackProc ,=0A= XtPointer* ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtSetSelectionParameters(=0A= =0A= Widget ,=0A= Atom ,=0A= Atom ,=0A= XtPointer ,=0A= unsigned long ,=0A= int =0A= =0A= );=0A= =0A= extern void XtGetSelectionParameters(=0A= =0A= Widget ,=0A= Atom ,=0A= XtRequestId ,=0A= Atom* ,=0A= XtPointer* ,=0A= unsigned long* ,=0A= int* =0A= =0A= );=0A= =0A= extern void XtCreateSelectionRequest(=0A= =0A= Widget ,=0A= Atom =0A= =0A= );=0A= =0A= extern void XtSendSelectionRequest(=0A= =0A= Widget ,=0A= Atom ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtCancelSelectionRequest(=0A= =0A= Widget ,=0A= Atom =0A= =0A= );=0A= =0A= extern Atom XtReservePropertyAtom(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtReleasePropertyAtom(=0A= =0A= Widget ,=0A= Atom =0A= =0A= );=0A= =0A= extern void XtGrabKey(=0A= =0A= Widget ,=0A= KeyCode ,=0A= Modifiers ,=0A= Boolean ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern void XtUngrabKey(=0A= =0A= Widget ,=0A= KeyCode ,=0A= Modifiers =0A= =0A= );=0A= =0A= extern int XtGrabKeyboard(=0A= =0A= Widget ,=0A= Boolean ,=0A= int ,=0A= int ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtUngrabKeyboard(=0A= =0A= Widget ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtGrabButton(=0A= =0A= Widget ,=0A= int ,=0A= Modifiers ,=0A= Boolean ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= Window ,=0A= Cursor =0A= =0A= );=0A= =0A= extern void XtUngrabButton(=0A= =0A= Widget ,=0A= unsigned int ,=0A= Modifiers =0A= =0A= );=0A= =0A= extern int XtGrabPointer(=0A= =0A= Widget ,=0A= Boolean ,=0A= unsigned int ,=0A= int ,=0A= int ,=0A= Window ,=0A= Cursor ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtUngrabPointer(=0A= =0A= Widget ,=0A= Time =0A= =0A= );=0A= =0A= extern void XtGetApplicationNameAndClass(=0A= =0A= Display* ,=0A= String* ,=0A= String* =0A= =0A= );=0A= =0A= extern void XtRegisterDrawable(=0A= =0A= Display* ,=0A= Drawable ,=0A= Widget =0A= =0A= );=0A= =0A= extern void XtUnregisterDrawable(=0A= =0A= Display* ,=0A= Drawable =0A= =0A= );=0A= =0A= extern Widget XtHooksOfDisplay(=0A= =0A= Display* =0A= =0A= );=0A= =0A= typedef struct {=0A= String type;=0A= Widget widget;=0A= ArgList args;=0A= Cardinal num_args;=0A= } XtCreateHookDataRec, *XtCreateHookData;=0A= =0A= typedef struct {=0A= String type;=0A= Widget widget;=0A= XtPointer event_data;=0A= Cardinal num_event_data;=0A= } XtChangeHookDataRec, *XtChangeHookData;=0A= =0A= typedef struct {=0A= Widget old, req;=0A= ArgList args;=0A= Cardinal num_args;=0A= } XtChangeHookSetValuesDataRec, *XtChangeHookSetValuesData;=0A= =0A= typedef struct {=0A= String type;=0A= Widget widget;=0A= XtGeometryMask changeMask;=0A= XWindowChanges changes;=0A= } XtConfigureHookDataRec, *XtConfigureHookData;=0A= =0A= typedef struct {=0A= String type;=0A= Widget widget;=0A= XtWidgetGeometry* request;=0A= XtWidgetGeometry* reply;=0A= XtGeometryResult result;=0A= } XtGeometryHookDataRec, *XtGeometryHookData;=0A= =0A= typedef struct {=0A= String type;=0A= Widget widget;=0A= } XtDestroyHookDataRec, *XtDestroyHookData;=0A= =0A= extern void XtGetDisplays(=0A= =0A= XtAppContext ,=0A= Display*** ,=0A= Cardinal* =0A= =0A= );=0A= =0A= extern Boolean XtToolkitThreadInitialize(=0A= =0A= void=0A= =0A= );=0A= =0A= extern void XtAppSetExitFlag(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern Boolean XtAppGetExitFlag(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern void XtAppLock(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= extern void XtAppUnlock(=0A= =0A= XtAppContext =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern Boolean XtCvtStringToAcceleratorTable(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToAtom(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToBool(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToBoolean(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToCommandArgArray(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToCursor(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToDimension(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToDirectoryString(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToDisplay(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToFile(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToFloat(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToFont(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToFontSet(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToFontStruct(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToGravity(=0A= =0A= Display* ,=0A= XrmValuePtr ,=0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToInitialState(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToInt(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToPixel(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= =0A= =0A= extern Boolean XtCvtStringToRestartStyle(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToShort(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToTranslationTable(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToUnsignedChar(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtStringToVisual(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= =0A= =0A= extern Boolean XtCvtIntToBool(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtIntToBoolean(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtIntToColor(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= =0A= =0A= extern Boolean XtCvtIntToFloat(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtIntToFont(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtIntToPixel(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtIntToPixmap(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= =0A= =0A= extern Boolean XtCvtIntToShort(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= extern Boolean XtCvtIntToUnsignedChar(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= =0A= =0A= extern Boolean XtCvtColorToPixel(=0A= =0A= Display* ,=0A= XrmValuePtr , =0A= Cardinal* , =0A= XrmValuePtr ,=0A= XrmValuePtr ,=0A= XtPointer* =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= } =0A= =0A= =0A= =0A= # 1 "XText/XtDefs.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/StringDefs.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 324 "/usr/X11R6/include/X11/StringDefs.h"=0A= =0A= extern const char XtStrings[];=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 2 "XText/XtDefs.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/IntrinsicP.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= long xrm_name; =0A= long xrm_class; =0A= long xrm_type; =0A= Cardinal xrm_size; =0A= int xrm_offset; =0A= long xrm_default_type; =0A= XtPointer xrm_default_addr; =0A= } XrmResource, *XrmResourceList;=0A= =0A= typedef unsigned long XtVersionType;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef void (*XtProc)(=0A= =0A= void=0A= =0A= );=0A= =0A= typedef void (*XtWidgetClassProc)(=0A= =0A= WidgetClass =0A= =0A= );=0A= =0A= typedef void (*XtWidgetProc)(=0A= =0A= Widget =0A= =0A= );=0A= =0A= typedef Boolean (*XtAcceptFocusProc)(=0A= =0A= Widget ,=0A= Time* =0A= =0A= );=0A= =0A= typedef void (*XtArgsProc)(=0A= =0A= Widget ,=0A= ArgList ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef void (*XtInitProc)(=0A= =0A= Widget ,=0A= Widget ,=0A= ArgList ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef Boolean (*XtSetValuesFunc)(=0A= =0A= Widget ,=0A= Widget ,=0A= Widget ,=0A= ArgList ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef Boolean (*XtArgsFunc)(=0A= =0A= Widget ,=0A= ArgList ,=0A= Cardinal* =0A= =0A= );=0A= =0A= typedef void (*XtAlmostProc)(=0A= =0A= Widget ,=0A= Widget ,=0A= XtWidgetGeometry* ,=0A= XtWidgetGeometry* =0A= =0A= );=0A= =0A= typedef void (*XtExposeProc)(=0A= =0A= Widget ,=0A= XEvent* ,=0A= Region =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef void (*XtRealizeProc)(=0A= =0A= Widget ,=0A= XtValueMask* ,=0A= XSetWindowAttributes* =0A= =0A= );=0A= =0A= typedef XtGeometryResult (*XtGeometryHandler)(=0A= =0A= Widget ,=0A= XtWidgetGeometry* ,=0A= XtWidgetGeometry* =0A= =0A= );=0A= =0A= typedef void (*XtStringProc)(=0A= =0A= Widget ,=0A= String =0A= =0A= );=0A= =0A= typedef struct {=0A= String name; =0A= String type; =0A= XtArgVal value; =0A= int size; =0A= } XtTypedArg, *XtTypedArgList;=0A= =0A= typedef void (*XtAllocateProc)(=0A= =0A= WidgetClass ,=0A= Cardinal * ,=0A= Cardinal * ,=0A= ArgList ,=0A= Cardinal * ,=0A= XtTypedArgList ,=0A= Cardinal * ,=0A= Widget * ,=0A= XtPointer * =0A= =0A= );=0A= =0A= typedef void (*XtDeallocateProc)(=0A= =0A= Widget ,=0A= XtPointer =0A= =0A= );=0A= =0A= struct _XtStateRec; =0A= =0A= typedef struct _XtTMRec {=0A= XtTranslations translations; =0A= XtBoundActions proc_table; =0A= struct _XtStateRec *current_state; =0A= unsigned long lastEventTime;=0A= } XtTMRec, *XtTM;=0A= =0A= # 1 "/usr/X11R6/include/X11/CoreP.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= extern int _XtInheritTranslations;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _CorePart {=0A= Widget self; =0A= WidgetClass widget_class; =0A= Widget parent; =0A= XrmName xrm_name; =0A= Boolean being_destroyed; =0A= XtCallbackList destroy_callbacks; =0A= XtPointer constraints; =0A= Position x, y; =0A= Dimension width, height; =0A= Dimension border_width; =0A= Boolean managed; =0A= Boolean sensitive; =0A= Boolean ancestor_sensitive; =0A= XtEventTable event_table; =0A= XtTMRec tm; =0A= XtTranslations accelerators; =0A= Pixel border_pixel; =0A= Pixmap border_pixmap; =0A= WidgetList popup_list; =0A= Cardinal num_popups; =0A= String name; =0A= Screen *screen; =0A= Colormap colormap; =0A= Window window; =0A= Cardinal depth; =0A= Pixel background_pixel; =0A= Pixmap background_pixmap; =0A= Boolean visible; =0A= Boolean mapped_when_managed; =0A= } CorePart;=0A= =0A= typedef struct _WidgetRec {=0A= CorePart core;=0A= } WidgetRec, CoreRec;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _CoreClassPart {=0A= WidgetClass superclass; =0A= String class_name; =0A= Cardinal widget_size; =0A= XtProc class_initialize; =0A= XtWidgetClassProc class_part_initialize; =0A= XtEnum class_inited; =0A= XtInitProc initialize; =0A= XtArgsProc initialize_hook; =0A= XtRealizeProc realize; =0A= XtActionList actions; =0A= Cardinal num_actions; =0A= XtResourceList resources; =0A= Cardinal num_resources; =0A= XrmClass xrm_class; =0A= Boolean compress_motion; =0A= XtEnum compress_exposure; =0A= Boolean compress_enterleave; =0A= Boolean visible_interest; =0A= XtWidgetProc destroy; =0A= XtWidgetProc resize; =0A= XtExposeProc expose; =0A= XtSetValuesFunc set_values; =0A= XtArgsFunc set_values_hook; =0A= XtAlmostProc set_values_almost; =0A= XtArgsProc get_values_hook; =0A= XtAcceptFocusProc accept_focus; =0A= XtVersionType version; =0A= XtPointer callback_private; =0A= String tm_table; =0A= XtGeometryHandler query_geometry; =0A= XtStringProc display_accelerator; =0A= XtPointer extension; =0A= } CoreClassPart;=0A= =0A= typedef struct _WidgetClassRec {=0A= CoreClassPart core_class;=0A= } WidgetClassRec, CoreClassRec;=0A= =0A= extern WidgetClassRec widgetClassRec;=0A= =0A= =0A= =0A= =0A= # 229 "/usr/X11R6/include/X11/IntrinsicP.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/CompositeP.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _CompositePart {=0A= WidgetList children; =0A= Cardinal num_children; =0A= Cardinal num_slots; =0A= XtOrderProc insert_position; =0A= } CompositePart,*CompositePtr;=0A= =0A= typedef struct _CompositeRec {=0A= CorePart core;=0A= CompositePart composite;=0A= } CompositeRec;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _CompositeClassPart {=0A= XtGeometryHandler geometry_manager; =0A= XtWidgetProc change_managed; =0A= XtWidgetProc insert_child; =0A= XtWidgetProc delete_child; =0A= XtPointer extension; =0A= } CompositeClassPart,*CompositePartPtr;=0A= =0A= typedef struct {=0A= XtPointer next_extension; =0A= XrmQuark record_type; =0A= long version; =0A= Cardinal record_size; =0A= Boolean accepts_objects;=0A= Boolean allows_change_managed_set;=0A= } CompositeClassExtensionRec, *CompositeClassExtension;=0A= =0A= =0A= typedef struct _CompositeClassRec {=0A= CoreClassPart core_class;=0A= CompositeClassPart composite_class;=0A= } CompositeClassRec;=0A= =0A= extern CompositeClassRec compositeClassRec;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 230 "/usr/X11R6/include/X11/IntrinsicP.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/ConstrainP.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _ConstraintPart {=0A= XtPointer mumble; =0A= } ConstraintPart;=0A= =0A= typedef struct _ConstraintRec {=0A= CorePart core;=0A= CompositePart composite;=0A= ConstraintPart constraint;=0A= } ConstraintRec, *ConstraintWidget;=0A= =0A= typedef struct _ConstraintClassPart {=0A= XtResourceList resources; =0A= Cardinal num_resources; =0A= Cardinal constraint_size; =0A= XtInitProc initialize; =0A= XtWidgetProc destroy; =0A= XtSetValuesFunc set_values; =0A= XtPointer extension; =0A= } ConstraintClassPart;=0A= =0A= typedef struct {=0A= XtPointer next_extension; =0A= XrmQuark record_type; =0A= long version; =0A= Cardinal record_size; =0A= XtArgsProc get_values_hook;=0A= } ConstraintClassExtensionRec, *ConstraintClassExtension;=0A= =0A= typedef struct _ConstraintClassRec {=0A= CoreClassPart core_class;=0A= CompositeClassPart composite_class;=0A= ConstraintClassPart constraint_class;=0A= } ConstraintClassRec;=0A= =0A= extern ConstraintClassRec constraintClassRec;=0A= =0A= =0A= =0A= =0A= =0A= # 231 "/usr/X11R6/include/X11/IntrinsicP.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/ObjectP.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _ObjectPart {=0A= Widget self; =0A= WidgetClass widget_class; =0A= Widget parent; =0A= XrmName xrm_name; =0A= Boolean being_destroyed; =0A= XtCallbackList destroy_callbacks; =0A= XtPointer constraints; =0A= } ObjectPart;=0A= =0A= typedef struct _ObjectRec {=0A= ObjectPart object;=0A= } ObjectRec;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _ObjectClassPart {=0A= =0A= WidgetClass superclass; =0A= String class_name; =0A= Cardinal widget_size; =0A= XtProc class_initialize; =0A= XtWidgetClassProc class_part_initialize; =0A= XtEnum class_inited; =0A= XtInitProc initialize; =0A= XtArgsProc initialize_hook; =0A= XtProc obj1; =0A= XtPointer obj2; =0A= Cardinal obj3; =0A= XtResourceList resources; =0A= Cardinal num_resources; =0A= XrmClass xrm_class; =0A= Boolean obj4; =0A= XtEnum obj5; =0A= Boolean obj6; =0A= Boolean obj7; =0A= XtWidgetProc destroy; =0A= XtProc obj8; =0A= XtProc obj9; =0A= XtSetValuesFunc set_values; =0A= XtArgsFunc set_values_hook; =0A= XtProc obj10; =0A= XtArgsProc get_values_hook; =0A= XtProc obj11; =0A= XtVersionType version; =0A= XtPointer callback_private; =0A= String obj12; =0A= XtProc obj13; =0A= XtProc obj14; =0A= XtPointer extension; =0A= }ObjectClassPart;=0A= =0A= typedef struct {=0A= XtPointer next_extension; =0A= XrmQuark record_type; =0A= long version; =0A= Cardinal record_size; =0A= XtAllocateProc allocate;=0A= XtDeallocateProc deallocate;=0A= } ObjectClassExtensionRec, *ObjectClassExtension;=0A= =0A= typedef struct _ObjectClassRec {=0A= ObjectClassPart object_class;=0A= } ObjectClassRec;=0A= =0A= extern ObjectClassRec objectClassRec;=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 232 "/usr/X11R6/include/X11/IntrinsicP.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/RectObjP.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _RectObjPart {=0A= Position x, y; =0A= Dimension width, height; =0A= Dimension border_width; =0A= Boolean managed; =0A= Boolean sensitive; =0A= Boolean ancestor_sensitive; =0A= }RectObjPart;=0A= =0A= typedef struct _RectObjRec {=0A= ObjectPart object;=0A= RectObjPart rectangle;=0A= } RectObjRec;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _RectObjClassPart {=0A= =0A= WidgetClass superclass; =0A= String class_name; =0A= Cardinal widget_size; =0A= XtProc class_initialize; =0A= XtWidgetClassProc class_part_initialize; =0A= XtEnum class_inited; =0A= XtInitProc initialize; =0A= XtArgsProc initialize_hook; =0A= XtProc rect1; =0A= XtPointer rect2; =0A= Cardinal rect3; =0A= XtResourceList resources; =0A= Cardinal num_resources; =0A= XrmClass xrm_class; =0A= Boolean rect4; =0A= XtEnum rect5; =0A= Boolean rect6; =0A= Boolean rect7; =0A= XtWidgetProc destroy; =0A= XtWidgetProc resize; =0A= XtExposeProc expose; =0A= XtSetValuesFunc set_values; =0A= XtArgsFunc set_values_hook; =0A= XtAlmostProc set_values_almost; =0A= XtArgsProc get_values_hook; =0A= XtProc rect9; =0A= XtVersionType version; =0A= XtPointer callback_private; =0A= String rect10; =0A= XtGeometryHandler query_geometry; =0A= XtProc rect11; =0A= XtPointer extension; =0A= } RectObjClassPart;=0A= =0A= typedef struct _RectObjClassRec {=0A= RectObjClassPart rect_class;=0A= } RectObjClassRec;=0A= =0A= extern RectObjClassRec rectObjClassRec;=0A= =0A= =0A= # 233 "/usr/X11R6/include/X11/IntrinsicP.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 285 "/usr/X11R6/include/X11/IntrinsicP.h"=0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= extern Widget _XtWindowedAncestor( =0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void _XtInherit(=0A= =0A= void=0A= =0A= );=0A= =0A= extern void XtCreateWindow(=0A= =0A= Widget ,=0A= unsigned int ,=0A= Visual* ,=0A= XtValueMask ,=0A= XSetWindowAttributes* =0A= =0A= );=0A= =0A= extern void XtResizeWidget(=0A= =0A= Widget ,=0A= Dimension ,=0A= Dimension ,=0A= Dimension =0A= =0A= );=0A= =0A= extern void XtMoveWidget(=0A= =0A= Widget ,=0A= Position ,=0A= Position =0A= =0A= );=0A= =0A= extern void XtConfigureWidget(=0A= =0A= Widget ,=0A= Position ,=0A= Position ,=0A= Dimension ,=0A= Dimension ,=0A= Dimension =0A= =0A= );=0A= =0A= extern void XtResizeWindow(=0A= =0A= Widget =0A= =0A= );=0A= =0A= extern void XtProcessLock(=0A= =0A= void=0A= =0A= );=0A= =0A= extern void XtProcessUnlock(=0A= =0A= void=0A= =0A= );=0A= =0A= } =0A= =0A= =0A= =0A= # 3 "XText/XtDefs.h" 2=0A= =0A= =0A= =0A= # 1 "/usr/X11R6/include/X11/Shell.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/X11R6/include/X11/SM/SMlib.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/X11R6/include/X11/SM/SM.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 37 "/usr/X11R6/include/X11/SM/SMlib.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/ICE/ICElib.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "/usr/X11R6/include/X11/ICE/ICE.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 35 "/usr/X11R6/include/X11/ICE/ICElib.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef void *IcePointer;=0A= =0A= =0A= =0A= =0A= typedef enum {=0A= IcePoAuthHaveReply,=0A= IcePoAuthRejected,=0A= IcePoAuthFailed,=0A= IcePoAuthDoneCleanup=0A= } IcePoAuthStatus;=0A= =0A= typedef enum {=0A= IcePaAuthContinue,=0A= IcePaAuthAccepted,=0A= IcePaAuthRejected,=0A= IcePaAuthFailed=0A= } IcePaAuthStatus;=0A= =0A= typedef enum {=0A= IceConnectPending,=0A= IceConnectAccepted,=0A= IceConnectRejected,=0A= IceConnectIOError=0A= } IceConnectStatus;=0A= =0A= typedef enum {=0A= IceProtocolSetupSuccess,=0A= IceProtocolSetupFailure,=0A= IceProtocolSetupIOError,=0A= IceProtocolAlreadyActive=0A= } IceProtocolSetupStatus;=0A= =0A= typedef enum {=0A= IceAcceptSuccess,=0A= IceAcceptFailure,=0A= IceAcceptBadMalloc=0A= } IceAcceptStatus;=0A= =0A= typedef enum {=0A= IceClosedNow,=0A= IceClosedASAP,=0A= IceConnectionInUse,=0A= IceStartedShutdownNegotiation=0A= } IceCloseStatus;=0A= =0A= typedef enum {=0A= IceProcessMessagesSuccess,=0A= IceProcessMessagesIOError,=0A= IceProcessMessagesConnectionClosed=0A= } IceProcessMessagesStatus;=0A= =0A= typedef struct {=0A= unsigned long sequence_of_request;=0A= int major_opcode_of_request;=0A= int minor_opcode_of_request;=0A= IcePointer reply;=0A= } IceReplyWaitInfo;=0A= =0A= typedef struct _IceConn *IceConn;=0A= typedef struct _IceListenObj *IceListenObj;=0A= =0A= typedef void (*IceWatchProc) (=0A= =0A= IceConn ,=0A= IcePointer ,=0A= int ,=0A= IcePointer * =0A= =0A= );=0A= =0A= typedef void (*IcePoProcessMsgProc) (=0A= =0A= IceConn ,=0A= IcePointer ,=0A= int ,=0A= unsigned long ,=0A= int ,=0A= IceReplyWaitInfo * ,=0A= int * =0A= =0A= );=0A= =0A= typedef void (*IcePaProcessMsgProc) (=0A= =0A= IceConn ,=0A= IcePointer ,=0A= int ,=0A= unsigned long ,=0A= int =0A= =0A= );=0A= =0A= typedef struct {=0A= int major_version;=0A= int minor_version;=0A= IcePoProcessMsgProc process_msg_proc;=0A= } IcePoVersionRec;=0A= =0A= typedef struct {=0A= int major_version;=0A= int minor_version;=0A= IcePaProcessMsgProc process_msg_proc;=0A= } IcePaVersionRec;=0A= =0A= typedef IcePoAuthStatus (*IcePoAuthProc) (=0A= =0A= IceConn ,=0A= IcePointer * ,=0A= int ,=0A= int ,=0A= int ,=0A= IcePointer ,=0A= int * ,=0A= IcePointer * ,=0A= char ** =0A= =0A= );=0A= =0A= typedef IcePaAuthStatus (*IcePaAuthProc) (=0A= =0A= IceConn ,=0A= IcePointer * ,=0A= int ,=0A= int ,=0A= IcePointer ,=0A= int * ,=0A= IcePointer * ,=0A= char ** =0A= =0A= );=0A= =0A= typedef int (*IceHostBasedAuthProc) (=0A= =0A= char * =0A= =0A= );=0A= =0A= typedef int (*IceProtocolSetupProc) (=0A= =0A= IceConn ,=0A= int ,=0A= int ,=0A= char * ,=0A= char * ,=0A= IcePointer * ,=0A= char ** =0A= =0A= );=0A= =0A= typedef void (*IceProtocolActivateProc) (=0A= =0A= IceConn ,=0A= IcePointer =0A= =0A= );=0A= =0A= typedef void (*IceIOErrorProc) (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= typedef void (*IcePingReplyProc) (=0A= =0A= IceConn ,=0A= IcePointer =0A= =0A= );=0A= =0A= typedef void (*IceErrorHandler) (=0A= =0A= IceConn ,=0A= int ,=0A= int ,=0A= unsigned long ,=0A= int ,=0A= int ,=0A= IcePointer =0A= =0A= );=0A= =0A= typedef void (*IceIOErrorHandler) (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= extern int IceRegisterForProtocolSetup (=0A= =0A= char * ,=0A= char * ,=0A= char * ,=0A= int ,=0A= IcePoVersionRec * ,=0A= int ,=0A= char ** ,=0A= IcePoAuthProc * ,=0A= IceIOErrorProc =0A= =0A= );=0A= =0A= extern int IceRegisterForProtocolReply (=0A= =0A= char * ,=0A= char * ,=0A= char * ,=0A= int ,=0A= IcePaVersionRec * ,=0A= int ,=0A= char ** ,=0A= IcePaAuthProc * ,=0A= IceHostBasedAuthProc ,=0A= IceProtocolSetupProc ,=0A= IceProtocolActivateProc ,=0A= IceIOErrorProc =0A= =0A= );=0A= =0A= extern IceConn IceOpenConnection (=0A= =0A= char * ,=0A= IcePointer ,=0A= int ,=0A= int ,=0A= int ,=0A= char * =0A= =0A= );=0A= =0A= extern IcePointer IceGetConnectionContext (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceListenForConnections (=0A= =0A= int * ,=0A= IceListenObj ** ,=0A= int ,=0A= char * =0A= =0A= );=0A= =0A= extern int IceListenForWellKnownConnections (=0A= =0A= char * ,=0A= int * ,=0A= IceListenObj ** ,=0A= int ,=0A= char * =0A= =0A= );=0A= =0A= extern int IceGetListenConnectionNumber (=0A= =0A= IceListenObj =0A= =0A= );=0A= =0A= extern char *IceGetListenConnectionString (=0A= =0A= IceListenObj =0A= =0A= );=0A= =0A= extern char *IceComposeNetworkIdList (=0A= =0A= int ,=0A= IceListenObj * =0A= =0A= );=0A= =0A= extern void IceFreeListenObjs (=0A= =0A= int ,=0A= IceListenObj * =0A= =0A= );=0A= =0A= extern void IceSetHostBasedAuthProc (=0A= =0A= IceListenObj ,=0A= IceHostBasedAuthProc =0A= =0A= );=0A= =0A= extern IceConn IceAcceptConnection (=0A= =0A= IceListenObj ,=0A= IceAcceptStatus * =0A= =0A= );=0A= =0A= extern void IceSetShutdownNegotiation (=0A= =0A= IceConn ,=0A= int =0A= =0A= );=0A= =0A= extern int IceCheckShutdownNegotiation (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern IceCloseStatus IceCloseConnection (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceAddConnectionWatch (=0A= =0A= IceWatchProc ,=0A= IcePointer =0A= =0A= );=0A= =0A= extern void IceRemoveConnectionWatch (=0A= =0A= IceWatchProc ,=0A= IcePointer =0A= =0A= );=0A= =0A= extern IceProtocolSetupStatus IceProtocolSetup (=0A= =0A= IceConn ,=0A= int ,=0A= IcePointer ,=0A= int ,=0A= int * ,=0A= int * ,=0A= char ** ,=0A= char ** ,=0A= int ,=0A= char * =0A= =0A= );=0A= =0A= extern int IceProtocolShutdown (=0A= =0A= IceConn ,=0A= int =0A= =0A= );=0A= =0A= extern IceProcessMessagesStatus IceProcessMessages (=0A= =0A= IceConn ,=0A= IceReplyWaitInfo * ,=0A= int * =0A= =0A= );=0A= =0A= extern int IcePing (=0A= =0A= IceConn ,=0A= IcePingReplyProc ,=0A= IcePointer =0A= =0A= );=0A= =0A= extern char *IceAllocScratch (=0A= =0A= IceConn ,=0A= unsigned long =0A= =0A= );=0A= =0A= extern int IceFlush (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceGetOutBufSize (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceGetInBufSize (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern IceConnectStatus IceConnectionStatus (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern char *IceVendor (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern char *IceRelease (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceProtocolVersion (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceProtocolRevision (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceConnectionNumber (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern char *IceConnectionString (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern unsigned long IceLastSentSequenceNumber (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern unsigned long IceLastReceivedSequenceNumber (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern int IceSwapping (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern IceErrorHandler IceSetErrorHandler (=0A= =0A= IceErrorHandler =0A= =0A= );=0A= =0A= extern IceIOErrorHandler IceSetIOErrorHandler (=0A= =0A= IceIOErrorHandler =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= extern int IceInitThreads (=0A= =0A= void=0A= =0A= );=0A= =0A= extern void IceAppLockConn (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= extern void IceAppUnlockConn (=0A= =0A= IceConn =0A= =0A= );=0A= =0A= } =0A= =0A= =0A= # 38 "/usr/X11R6/include/X11/SM/SMlib.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef IcePointer SmPointer;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _SmcConn *SmcConn;=0A= typedef struct _SmsConn *SmsConn;=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= int length; =0A= SmPointer value; =0A= } SmPropValue;=0A= =0A= typedef struct {=0A= char *name; =0A= char *type; =0A= int num_vals; =0A= SmPropValue *vals; =0A= } SmProp;=0A= =0A= =0A= =0C=0A= =0A= =0A= =0A= =0A= typedef enum {=0A= SmcClosedNow,=0A= SmcClosedASAP,=0A= SmcConnectionInUse=0A= } SmcCloseStatus;=0A= =0A= =0A= =0C=0A= =0A= =0A= =0A= =0A= typedef void (*SmcSaveYourselfProc) (=0A= =0A= SmcConn ,=0A= SmPointer ,=0A= int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= typedef void (*SmcSaveYourselfPhase2Proc) (=0A= =0A= SmcConn ,=0A= SmPointer =0A= =0A= );=0A= =0A= typedef void (*SmcInteractProc) (=0A= =0A= SmcConn ,=0A= SmPointer =0A= =0A= );=0A= =0A= typedef void (*SmcDieProc) (=0A= =0A= SmcConn ,=0A= SmPointer =0A= =0A= );=0A= =0A= typedef void (*SmcShutdownCancelledProc) (=0A= =0A= SmcConn ,=0A= SmPointer =0A= =0A= );=0A= =0A= typedef void (*SmcSaveCompleteProc) (=0A= =0A= SmcConn ,=0A= SmPointer =0A= =0A= );=0A= =0A= typedef void (*SmcPropReplyProc) (=0A= =0A= SmcConn ,=0A= SmPointer ,=0A= int ,=0A= SmProp ** =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= =0A= struct {=0A= SmcSaveYourselfProc callback;=0A= SmPointer client_data;=0A= } save_yourself;=0A= =0A= struct {=0A= SmcDieProc callback;=0A= SmPointer client_data;=0A= } die;=0A= =0A= struct {=0A= SmcSaveCompleteProc callback;=0A= SmPointer client_data;=0A= } save_complete;=0A= =0A= struct {=0A= SmcShutdownCancelledProc callback;=0A= SmPointer client_data;=0A= } shutdown_cancelled;=0A= =0A= } SmcCallbacks;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0C=0A= =0A= =0A= =0A= =0A= typedef int (*SmsRegisterClientProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= char * =0A= =0A= );=0A= =0A= typedef void (*SmsInteractRequestProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= int =0A= =0A= );=0A= =0A= typedef void (*SmsInteractDoneProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= int =0A= =0A= );=0A= =0A= typedef void (*SmsSaveYourselfRequestProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= int ,=0A= int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= typedef void (*SmsSaveYourselfPhase2RequestProc) (=0A= =0A= SmsConn ,=0A= SmPointer =0A= =0A= );=0A= =0A= typedef void (*SmsSaveYourselfDoneProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= int =0A= =0A= );=0A= =0A= typedef void (*SmsCloseConnectionProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= int ,=0A= char ** =0A= =0A= );=0A= =0A= typedef void (*SmsSetPropertiesProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= int ,=0A= SmProp ** =0A= =0A= );=0A= =0A= typedef void (*SmsDeletePropertiesProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= int ,=0A= char ** =0A= =0A= );=0A= =0A= typedef void (*SmsGetPropertiesProc) (=0A= =0A= SmsConn ,=0A= SmPointer =0A= =0A= );=0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct {=0A= =0A= struct {=0A= SmsRegisterClientProc callback;=0A= SmPointer manager_data;=0A= } register_client;=0A= =0A= struct {=0A= SmsInteractRequestProc callback;=0A= SmPointer manager_data;=0A= } interact_request;=0A= =0A= struct {=0A= SmsInteractDoneProc callback;=0A= SmPointer manager_data;=0A= } interact_done;=0A= =0A= struct {=0A= SmsSaveYourselfRequestProc callback;=0A= SmPointer manager_data;=0A= } save_yourself_request;=0A= =0A= struct {=0A= SmsSaveYourselfPhase2RequestProc callback;=0A= SmPointer manager_data;=0A= } save_yourself_phase2_request;=0A= =0A= struct {=0A= SmsSaveYourselfDoneProc callback;=0A= SmPointer manager_data;=0A= } save_yourself_done;=0A= =0A= struct {=0A= SmsCloseConnectionProc callback;=0A= SmPointer manager_data;=0A= } close_connection;=0A= =0A= struct {=0A= SmsSetPropertiesProc callback;=0A= SmPointer manager_data;=0A= } set_properties;=0A= =0A= struct {=0A= SmsDeletePropertiesProc callback;=0A= SmPointer manager_data;=0A= } delete_properties;=0A= =0A= struct {=0A= SmsGetPropertiesProc callback;=0A= SmPointer manager_data;=0A= } get_properties;=0A= =0A= } SmsCallbacks;=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef int (*SmsNewClientProc) (=0A= =0A= SmsConn ,=0A= SmPointer ,=0A= unsigned long * ,=0A= SmsCallbacks * ,=0A= char ** =0A= =0A= );=0A= =0A= =0A= =0C=0A= =0A= =0A= =0A= =0A= typedef void (*SmcErrorHandler) (=0A= =0A= SmcConn ,=0A= int ,=0A= int ,=0A= unsigned long ,=0A= int ,=0A= int ,=0A= SmPointer =0A= =0A= );=0A= =0A= typedef void (*SmsErrorHandler) (=0A= =0A= SmsConn ,=0A= int ,=0A= int ,=0A= unsigned long ,=0A= int ,=0A= int ,=0A= SmPointer =0A= =0A= );=0A= =0A= =0A= =0C=0A= =0A= =0A= =0A= =0A= extern "C" { =0A= =0A= extern SmcConn SmcOpenConnection (=0A= =0A= char * ,=0A= SmPointer ,=0A= int ,=0A= int ,=0A= unsigned long ,=0A= SmcCallbacks * ,=0A= char * ,=0A= char ** ,=0A= int ,=0A= char * =0A= =0A= );=0A= =0A= extern SmcCloseStatus SmcCloseConnection (=0A= =0A= SmcConn ,=0A= int ,=0A= char ** =0A= =0A= );=0A= =0A= extern void SmcModifyCallbacks (=0A= =0A= SmcConn ,=0A= unsigned long ,=0A= SmcCallbacks * =0A= =0A= );=0A= =0A= extern void SmcSetProperties (=0A= =0A= SmcConn ,=0A= int ,=0A= SmProp ** =0A= =0A= );=0A= =0A= extern void SmcDeleteProperties (=0A= =0A= SmcConn ,=0A= int ,=0A= char ** =0A= =0A= );=0A= =0A= extern int SmcGetProperties (=0A= =0A= SmcConn ,=0A= SmcPropReplyProc ,=0A= SmPointer =0A= =0A= );=0A= =0A= extern int SmcInteractRequest (=0A= =0A= SmcConn ,=0A= int ,=0A= SmcInteractProc ,=0A= SmPointer =0A= =0A= );=0A= =0A= extern void SmcInteractDone (=0A= =0A= SmcConn ,=0A= int =0A= =0A= );=0A= =0A= extern void SmcRequestSaveYourself (=0A= =0A= SmcConn ,=0A= int ,=0A= int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern int SmcRequestSaveYourselfPhase2 (=0A= =0A= SmcConn ,=0A= SmcSaveYourselfPhase2Proc ,=0A= SmPointer =0A= =0A= );=0A= =0A= extern void SmcSaveYourselfDone (=0A= =0A= SmcConn ,=0A= int =0A= =0A= );=0A= =0A= extern int SmcProtocolVersion (=0A= =0A= SmcConn =0A= =0A= );=0A= =0A= extern int SmcProtocolRevision (=0A= =0A= SmcConn =0A= =0A= );=0A= =0A= extern char *SmcVendor (=0A= =0A= SmcConn =0A= =0A= );=0A= =0A= extern char *SmcRelease (=0A= =0A= SmcConn =0A= =0A= );=0A= =0A= extern char *SmcClientID (=0A= =0A= SmcConn =0A= =0A= );=0A= =0A= extern IceConn SmcGetIceConnection (=0A= =0A= SmcConn =0A= =0A= );=0A= =0A= extern int SmsInitialize (=0A= =0A= char * ,=0A= char * ,=0A= SmsNewClientProc ,=0A= SmPointer ,=0A= IceHostBasedAuthProc ,=0A= int ,=0A= char * =0A= =0A= );=0A= =0A= extern char *SmsClientHostName (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern char *SmsGenerateClientID (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern int SmsRegisterClientReply (=0A= =0A= SmsConn ,=0A= char * =0A= =0A= );=0A= =0A= extern void SmsSaveYourself (=0A= =0A= SmsConn ,=0A= int ,=0A= int ,=0A= int ,=0A= int =0A= =0A= );=0A= =0A= extern void SmsSaveYourselfPhase2 (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern void SmsInteract (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern void SmsDie (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern void SmsSaveComplete (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern void SmsShutdownCancelled (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern void SmsReturnProperties (=0A= =0A= SmsConn ,=0A= int ,=0A= SmProp ** =0A= =0A= );=0A= =0A= extern void SmsCleanUp (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern int SmsProtocolVersion (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern int SmsProtocolRevision (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern char *SmsClientID (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern IceConn SmsGetIceConnection (=0A= =0A= SmsConn =0A= =0A= );=0A= =0A= extern SmcErrorHandler SmcSetErrorHandler (=0A= =0A= SmcErrorHandler =0A= =0A= );=0A= =0A= extern SmsErrorHandler SmsSetErrorHandler (=0A= =0A= SmsErrorHandler =0A= =0A= );=0A= =0A= extern void SmFreeProperty (=0A= =0A= SmProp * =0A= =0A= );=0A= =0A= extern void SmFreeReasons (=0A= =0A= int ,=0A= char ** =0A= =0A= );=0A= =0A= } =0A= =0A= =0A= # 54 "/usr/X11R6/include/X11/Shell.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 196 "/usr/X11R6/include/X11/Shell.h"=0A= =0A= extern const char XtShellStrings[];=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= typedef struct _ShellClassRec *ShellWidgetClass;=0A= typedef struct _OverrideShellClassRec *OverrideShellWidgetClass;=0A= typedef struct _WMShellClassRec *WMShellWidgetClass;=0A= typedef struct _TransientShellClassRec *TransientShellWidgetClass;=0A= typedef struct _TopLevelShellClassRec *TopLevelShellWidgetClass;=0A= typedef struct _ApplicationShellClassRec *ApplicationShellWidgetClass;=0A= typedef struct _SessionShellClassRec *SessionShellWidgetClass;=0A= =0A= =0A= extern WidgetClass shellWidgetClass;=0A= extern WidgetClass overrideShellWidgetClass;=0A= extern WidgetClass wmShellWidgetClass;=0A= extern WidgetClass transientShellWidgetClass;=0A= extern WidgetClass topLevelShellWidgetClass;=0A= extern WidgetClass applicationShellWidgetClass;=0A= extern WidgetClass sessionShellWidgetClass;=0A= =0A= =0A= =0A= =0A= # 6 "XText/XtDefs.h" 2=0A= =0A= # 1 "/usr/X11R6/include/X11/Xos.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 54 "/usr/X11R6/include/X11/Xos.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 114 "/usr/X11R6/include/X11/Xos.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 141 "/usr/X11R6/include/X11/Xos.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 191 "/usr/X11R6/include/X11/Xos.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 221 "/usr/X11R6/include/X11/Xos.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 293 "/usr/X11R6/include/X11/Xos.h"=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 332 "/usr/X11R6/include/X11/Xos.h"=0A= =0A= =0A= =0A= # 7 "XText/XtDefs.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 3 "XText/Includes.h" 2=0A= =0A= =0A= # 31 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/Includes.h" 1=0A= =0A= =0A= # 34 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/Includes.h" 1=0A= =0A= =0A= # 37 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/Includes.h" 1=0A= =0A= =0A= # 40 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/Includes.h" 1=0A= =0A= =0A= # 43 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/Includes.h" 1=0A= =0A= =0A= =0A= # 1 "RAYext/constants.h" 1=0A= =0A= =0A= =0A= # 3 "RAYext/Includes.h" 2=0A= =0A= =0A= # 52 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/Includes.h" 1=0A= =0A= =0A= # 58 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/Includes.h" 1=0A= =0A= =0A= # 61 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "MAText/NodeDefs.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 99 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/NodeDefs.h" 1=0A= =0A= =0A= # 102 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/NodeDefs.h" 1=0A= =0A= =0A= =0A= # 105 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/NodeDefs.h" 1=0A= =0A= =0A= =0A= =0A= =0A= # 108 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XText/NodeDefs.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 111 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/NodeDefs.h" 1=0A= =0A= =0A= =0A= # 114 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/NodeDefs.h" 1=0A= =0A= =0A= =0A= # 117 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/NodeDefs.h" 1=0A= =0A= =0A= =0A= # 120 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/NodeDefs.h" 1=0A= =0A= =0A= # 123 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/NodeDefs.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 132 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/NodeDefs.h" 1=0A= =0A= =0A= =0A= # 138 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/NodeDefs.h" 1=0A= =0A= =0A= =0A= # 141 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "macros.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "MAText/AccessMacros.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 53 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/AccessMacros.h" 1=0A= =0A= =0A= # 56 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/AccessMacros.h" 1=0A= =0A= =0A= # 59 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/AccessMacros.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 62 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "XText/AccessMacros.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 65 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/AccessMacros.h" 1=0A= =0A= =0A= # 68 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/AccessMacros.h" 1=0A= =0A= =0A= # 71 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/AccessMacros.h" 1=0A= =0A= =0A= # 74 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/AccessMacros.h" 1=0A= =0A= =0A= =0A= =0A= # 77 "macros.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/AccessMacros.h" 1=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 86 "macros.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/AccessMacros.h" 1=0A= =0A= =0A= # 92 "macros.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/AccessMacros.h" 1=0A= =0A= =0A= # 95 "macros.h" 2=0A= =0A= =0A= =0A= # 153 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= class Pd {=0A= =0A= public:=0A= =0A= char *messages[100];=0A= int message_ptr;=0A= =0A= =0A= # 1 "MAText/DataTypes.h" 1=0A= =0A= =0A= typedef struct _Picdata {=0A= struct pixrect *pr; =0A= } Picdata;=0A= =0A= # 169 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/DataTypes.h" 1=0A= =0A= =0A= # 172 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/DataTypes.h" 1=0A= =0A= =0A= # 175 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/DataTypes.h" 1=0A= =0A= =0A= typedef struct _ApPixmap {=0A= int scrnx;=0A= int scrny;=0A= Pixmap pixmap;=0A= Pixmap mask;=0A= XpmAttributes attributes;=0A= } ApPixmap;=0A= =0A= =0A= # 178 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XText/DataTypes.h" 1=0A= =0A= =0A= Arg apargs[100];=0A= =0A= # 181 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/DataTypes.h" 1=0A= =0A= =0A= # 184 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/DataTypes.h" 1=0A= =0A= =0A= # 187 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/DataTypes.h" 1=0A= =0A= =0A= # 190 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/DataTypes.h" 1=0A= =0A= =0A= # 193 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/DataTypes.h" 1=0A= =0A= =0A= typedef struct {=0A= float x,y,z;=0A= } t_3d;=0A= =0A= typedef struct { =0A= t_3d nrm;=0A= float d;=0A= t_3d e1, e2, e3;=0A= float d1, d2, d3;=0A= } o_triangle;=0A= =0A= typedef struct {=0A= o_triangle *t1;=0A= o_triangle *t2;=0A= } o_patch;=0A= =0A= typedef struct {=0A= int id;=0A= int objtyp;=0A= int surfnum;=0A= union {=0A= o_triangle *p_triangle;=0A= o_patch *p_patch;=0A= } objpnt;=0A= } t_object;=0A= =0A= typedef struct {=0A= float x, y, z, bright;=0A= } t_light;=0A= =0A= typedef struct {=0A= float ar, ag, ab;=0A= float dr, dg, db;=0A= float sr, sg, sb;=0A= float coef;=0A= float refl;=0A= float transp;=0A= } t_surface;=0A= =0A= typedef struct {=0A= float r, g, b;=0A= } t_color;=0A= =0A= int nlight;=0A= t_light **light;=0A= int nobject;=0A= t_object **objects;=0A= int nsurface;=0A= t_surface **surface;=0A= int sizex, sizey;=0A= t_3d eyep, lookp, up;=0A= float hfov, vfov;=0A= t_color background;=0A= =0A= float (Pd::*objint[10])(t_3d *, t_3d *, t_object *);=0A= int (Pd::*objnrm[10])(t_3d *, t_object *, t_3d *);=0A= =0A= # 202 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/DataTypes.h" 1=0A= =0A= =0A= # 208 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/DataTypes.h" 1=0A= =0A= =0A= # 211 "sim.h" 2=0A= =0A= =0A= =0A= =0A= typedef struct node {=0A= union { =0A= struct xsym { =0A= struct node *xsy_plist; =0A= struct node *xsy_value; =0A= } n_xsym;=0A= struct xsubr { =0A= struct node *(Pd::*xsu_subr)(struct node *);=0A= } n_xsubr;=0A= struct xlist { =0A= struct node *xl_car; =0A= struct node *xl_cdr; =0A= } n_xlist;=0A= struct xint { =0A= int xi_int; =0A= } n_xint;=0A= struct xstr { =0A= int xst_type; =0A= char *xst_str; =0A= } n_xstr;=0A= struct xobj { =0A= struct node *xo_obclass; =0A= struct node *xo_obdata; =0A= } n_xobj;=0A= struct xfptr { =0A= FILE *xf_fp; =0A= int xf_savech; =0A= } n_xfptr;=0A= struct xreal { =0A= float xr_real; =0A= } n_xreal;=0A= =0A= # 1 "MAText/NodeTypes.h" 1=0A= =0A= struct xmat { =0A= int xm_type; =0A= MATptr xm_mat; =0A= } n_xmat;=0A= struct xpicheader {=0A= int xx_picheaderType;=0A= struct rasterfile *xx_picheader;=0A= } n_xpicheader;=0A= struct xpiccolormap {=0A= int xx_piccolormapType;=0A= colormap_t *xx_piccolormap;=0A= } n_xpiccolormap;=0A= struct xpicdata {=0A= int xx_picdataType;=0A= Picdata *xx_picdata;=0A= } n_xpicdata;=0A= # 247 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/NodeTypes.h" 1=0A= =0A= # 250 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/NodeTypes.h" 1=0A= =0A= # 253 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/NodeTypes.h" 1=0A= =0A= =0A= struct xpixmap {=0A= int xx_type;=0A= ApPixmap *xx_pixmap;=0A= } n_xpixmap;=0A= struct xwindow {=0A= int xx_type;=0A= Window xx_window;=0A= } n_xwindow;=0A= =0A= =0A= # 256 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XText/NodeTypes.h" 1=0A= struct xwidget { =0A= int xx_type;=0A= Widget xx_widget; =0A= } n_xwidget;=0A= struct xwidgetClass { =0A= int xx_type;=0A= WidgetClass xx_widgetClass; =0A= } n_xwidgetClass;=0A= struct xstring { =0A= int xx_type;=0A= String xx_string; =0A= } n_xstring;=0A= struct ximage { =0A= int xx_type;=0A= XImage *xx_image; =0A= } n_ximage;=0A= struct xcolormap { =0A= int xx_type;=0A= Colormap xx_colormap; =0A= } n_xcolormap;=0A= struct xcallbackdata { =0A= int xx_type;=0A= XtPointer xx_callbackdata; =0A= } n_xcallbackdata;=0A= struct xevent { =0A= int xx_type;=0A= XtPointer xx_event; =0A= } n_xevent;=0A= # 259 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/NodeTypes.h" 1=0A= =0A= # 262 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/NodeTypes.h" 1=0A= =0A= # 265 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/NodeTypes.h" 1=0A= =0A= # 268 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/NodeTypes.h" 1=0A= =0A= =0A= # 271 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/NodeTypes.h" 1=0A= struct xt3d {=0A= int xx_type;=0A= t_3d *xx_t3d;=0A= } n_xt3d;=0A= struct xtobject {=0A= int xx_type;=0A= t_object *xx_tobject;=0A= } n_xtobject;=0A= struct xtlight {=0A= int xx_type;=0A= t_light *xx_tlight;=0A= } n_xtlight;=0A= struct xtsurface {=0A= int xx_type;=0A= t_surface *xx_tsurface;=0A= } n_xtsurface;=0A= struct xtcolor {=0A= int xx_type;=0A= t_color *xx_tcolor;=0A= } n_xtcolor;=0A= # 280 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/NodeTypes.h" 1=0A= =0A= # 286 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/NodeTypes.h" 1=0A= =0A= # 289 "sim.h" 2=0A= =0A= =0A= } n_info;=0A= char n_type; =0A= char n_flags; =0A= } NODE;=0A= =0A= =0A= typedef struct context {=0A= int c_flags; =0A= struct node *c_expr; =0A= jmp_buf c_jmpbuf; =0A= struct context *c_xlcontext; =0A= struct node *c_xlstack; =0A= struct node *c_xlenv,*c_xlnewenv; =0A= int c_xltrace; =0A= } CONTEXT;=0A= =0A= =0A= struct segment {=0A= int sg_size;=0A= struct segment *sg_next;=0A= struct node sg_nodes[1];=0A= };=0A= =0A= =0A= struct fdef {=0A= char *f_name; =0A= int f_type; =0A= struct node *(Pd::*f_fcn)(NODE *);=0A= };=0A= =0A= =0A= =0A= # 1 "public.h" 1=0A= NODE *xlsave(NODE *n1, NODE *n2, NODE *n3, NODE *n4, NODE *n5, NODE = *n6);=0A= NODE *xleval(NODE *expr);=0A= =0A= void sim(int argc, char **argv);=0A= void init_ftab(void);=0A= =0A= # 322 "sim.h" 2=0A= =0A= =0A= # 1 "MAText/Public.h" 1=0A= =0A= =0A= =0A= # 324 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/Public.h" 1=0A= =0A= =0A= # 327 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/Public.h" 1=0A= =0A= =0A= =0A= # 330 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/Public.h" 1=0A= =0A= =0A= =0A= # 333 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XText/Public.h" 1=0A= =0A= =0A= # 336 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/Public.h" 1=0A= =0A= =0A= =0A= =0A= # 339 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/Public.h" 1=0A= =0A= =0A= # 342 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/Public.h" 1=0A= =0A= =0A= =0A= =0A= # 345 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/Public.h" 1=0A= =0A= =0A= =0A= # 348 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/Public.h" 1=0A= =0A= =0A= =0A= =0A= # 357 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/Public.h" 1=0A= =0A= =0A= # 363 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/Public.h" 1=0A= =0A= =0A= # 366 "sim.h" 2=0A= =0A= =0A= =0A= =0A= NODE *xTrue;=0A= NODE *s_quote, *s_function;=0A= NODE *s_bquote, *s_comma, *s_comat;=0A= NODE *s_evalhook, *s_applyhook;=0A= NODE *s_lambda, *s_macro;=0A= NODE *s_stdin, *s_stdout;=0A= NODE *s_tracenable, *s_tlimit, *s_breakenable;=0A= NODE *s_continue, *s_quit;=0A= NODE *s_car, *s_cdr;=0A= NODE *s_get, *s_svalue, *s_splist;=0A= NODE *s_eql, *k_test, *k_tnot;=0A= NODE *k_optional, *k_rest, *k_aux;=0A= NODE *a_subr, *a_fsubr;=0A= NODE *a_list, *a_sym, *a_int;=0A= NODE *a_str, *a_obj, *a_fptr;=0A= NODE *oblist, *keylist, *s_unbound;=0A= =0A= NODE *a_real;=0A= =0A= =0A= # 1 "MAText/Symbols.h" 1=0A= =0A= =0A= NODE *a_matrix;=0A= NODE *a_picheader, *a_piccolormap, *a_picdata;=0A= =0A= # 390 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/Symbols.h" 1=0A= =0A= =0A= # 393 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/Symbols.h" 1=0A= =0A= =0A= # 396 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/Symbols.h" 1=0A= =0A= =0A= NODE *a_pixmap;=0A= NODE *a_window;=0A= =0A= # 399 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XText/Symbols.h" 1=0A= =0A= =0A= NODE *a_widget, *a_widgetclass;=0A= NODE *a_string, *a_ximage;=0A= NODE *a_colormap, *a_xevent, *a_xcallbackdata;=0A= =0A= =0A= NODE *ApEvent, *ApCallbackdata;=0A= =0A= NODE *ApEventMask, *ApMouseX, *ApMouseY;=0A= NODE *ApMouseLastX, *ApMouseLastY;=0A= NODE *ApKey, *ApMotionState;=0A= NODE *ApEventType, *ApNoEvent;=0A= NODE *ApKeyPress, *ApKeyRelease;=0A= NODE *ApButtonPress, *ApButtonRelease;=0A= NODE *ApPointerMotion, *ApButtonMotion;=0A= NODE *ApButton1Motion, *ApButton2Motion, *ApButton3Motion;=0A= NODE *ApExposure, *ApVisibilityChange, *ApStructureNotifyMask;=0A= NODE *ApTx, *ApTy;=0A= =0A= =0A= # 402 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/Symbols.h" 1=0A= =0A= =0A= =0A= # 405 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/Symbols.h" 1=0A= =0A= =0A= # 408 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/Symbols.h" 1=0A= =0A= =0A= =0A= # 411 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/Symbols.h" 1=0A= =0A= =0A= # 414 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/Symbols.h" 1=0A= =0A= =0A= NODE *a_t3d;=0A= NODE *a_tobject;=0A= NODE *a_tlight;=0A= NODE *a_tsurface;=0A= NODE *a_tcolor;=0A= =0A= # 423 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/Symbols.h" 1=0A= =0A= =0A= # 429 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/Symbols.h" 1=0A= =0A= =0A= =0A= # 432 "sim.h" 2=0A= =0A= =0A= =0A= int running, switching, x;=0A= char *nodename;=0A= =0A= =0A= NODE *xlstack;=0A= NODE *xlenv;=0A= NODE *xlnewenv;=0A= =0A= =0A= CONTEXT *xlcontext; =0A= NODE *xlvalue; =0A= =0A= =0A= int xldebug; =0A= int xltrace; =0A= NODE **trace_stack; =0A= =0A= =0A= char gsprefix[100 +1]; =0A= int gsnumber; =0A= =0A= =0A= int xlplevel; =0A= int xlfsize; =0A= int prompt; =0A= =0A= =0A= long total; =0A= int anodes; =0A= int nnodes; =0A= int nsegs; =0A= int nfree; =0A= int gccalls; =0A= struct segment *segs; =0A= NODE *fnodes; =0A= =0A= =0A= NODE *self, *Class, *object;=0A= NODE *New, *isnew, *msgcls, *msgclass;=0A= int varcnt;=0A= =0A= =0A= char buf[100 +1];=0A= =0A= =0A= =0A= private:=0A= =0A= # 1 "private.h" 1=0A= NODE *xeval(NODE *args);=0A= NODE *xapply(NODE *args);=0A= NODE *xfuncall(NODE *args);=0A= NODE *xquote(NODE *args);=0A= NODE *xbquote(NODE *args);=0A= NODE *bquote1(NODE *expr);=0A= NODE *xset(NODE *args);=0A= NODE *xsetq(NODE *args);=0A= NODE *xdefun(NODE *args);=0A= NODE *xdefmacro(NODE *args);=0A= NODE *defun(NODE *args,NODE *type);=0A= NODE *xgensym(NODE *args);=0A= NODE *xmakesymbol(NODE *args);=0A= NODE *xintern(NODE *args);=0A= NODE *makesymbol(NODE *args,int iflag);=0A= NODE *xsymname(NODE *args);=0A= NODE *xsymvalue(NODE *args);=0A= NODE *xsymplist(NODE *args);=0A= NODE *xget(NODE *args);=0A= NODE *xremprop(NODE *args);=0A= void xlsbind(NODE *sym, NODE *val);=0A= void xlbind(NODE *sym, NODE *val);=0A= void xlfixbindings(void);=0A= void xlunbind(NODE *env);=0A= NODE *xcond(NODE *args);=0A= NODE *xand(NODE *args);=0A= NODE *xxor(NODE *args);=0A= NODE *xif(NODE *args);=0A= NODE *xlet(NODE *args);=0A= NODE *xletstar(NODE *args);=0A= NODE *let(NODE *args,int pflag);=0A= NODE *xprog(NODE *args);=0A= NODE *xprogstar(NODE *args);=0A= NODE *prog(NODE *args,int pflag);=0A= NODE *xgo(NODE *args);=0A= NODE *xreturn(NODE *args);=0A= NODE *xprog1(NODE *args);=0A= NODE *xprog2(NODE *args);=0A= NODE *progx(NODE *args,int n);=0A= NODE *xprogn(NODE *args);=0A= NODE *xdo(NODE *args);=0A= NODE *xdostar(NODE *args);=0A= NODE *doloop(NODE *args,int pflag);=0A= NODE *xdolist(NODE *args);=0A= NODE *xdotimes(NODE *args);=0A= NODE *xcatch(NODE *args);=0A= NODE *xthrow(NODE *args);=0A= NODE *xerror(NODE *args);=0A= NODE *xcerror(NODE *args);=0A= NODE *xbreak(NODE *args);=0A= NODE *xerrset(NODE *args);=0A= NODE *xevalhook(NODE *args);=0A= void dobindings(NODE *blist,int pflag);=0A= void doupdates(NODE *blist,int pflag);=0A= int tagblock(NODE *code,NODE **pval);=0A= void xlfail(char *emsg);=0A= void xlabort(char *emsg);=0A= void xlbreak(char *emsg,NODE *arg);=0A= void xlerror(char *emsg,NODE *arg);=0A= void xlcerror(char *cmsg,char *emsg,NODE *arg);=0A= void xlerrprint(char *hdr,char *cmsg,char *emsg,NODE *arg);=0A= void doerror(char *cmsg,char *emsg,NODE *arg,int cflag);=0A= void breakloop(char *hdr,char *cmsg,char *emsg,NODE *arg,int cflag);=0A= void xltpush(NODE *nptr);=0A= void xltpop(void);=0A= NODE *stacktop(void);=0A= void xlbaktrace(int n);=0A= void xldinit(void);=0A= NODE *newnode(int type);=0A= char *stralloc(int size);=0A= char *strsave(char *str);=0A= void strfree(char *str);=0A= void gc(void);=0A= void mark(NODE *ptr);=0A= void sweep(void);=0A= int addseg(void);=0A= int livecar(NODE *n);=0A= int livecdr(NODE *n);=0A= void stats(void);=0A= void xlminit(void);=0A= NODE *xlxeval(NODE *expr);=0A= NODE *xlapply(NODE *fun,NODE *args);=0A= NODE *evform(NODE *expr);=0A= NODE *evalhook(NODE *expr);=0A= NODE *xlevlist(NODE *args);=0A= NODE *evsym(NODE *sym);=0A= void xlunbound(NODE *sym);=0A= NODE *evfun(NODE *fun,NODE *args);=0A= void xlabind(NODE *fargs,NODE *aargs);=0A= int iskeyword(NODE *sym);=0A= NODE *xread(NODE *args);=0A= NODE *xprint(NODE *args);=0A= NODE *xprin1(NODE *args);=0A= NODE *xprinc(NODE *args);=0A= NODE *xterpri(NODE *args);=0A= NODE *printit(NODE *args,int pflag,int tflag);=0A= NODE *xflatsize(NODE *args);=0A= NODE *xflatc(NODE *args);=0A= NODE *flatsize(NODE *args,int pflag);=0A= NODE *xexplode(NODE *args);=0A= NODE *xexplc(NODE *args);=0A= NODE *explode(NODE *args,int pflag);=0A= NODE *ximplode(NODE *args);=0A= NODE *xmaknam(NODE *args);=0A= NODE *implode(NODE *args,int intflag);=0A= NODE *xopeni(NODE *args);=0A= NODE *xopeno(NODE *args);=0A= NODE *openit(NODE *args,char *mode);=0A= NODE *xclose(NODE *args);=0A= NODE *xrdchar(NODE *args);=0A= NODE *xpkchar(NODE *args);=0A= NODE *xwrchar(NODE *args);=0A= NODE *xreadline(NODE *args);=0A= NODE *getfile(NODE **pargs);=0A= void xlinit(void);=0A= int xlgetc(NODE *fptr);=0A= int xlpeek(NODE *fptr);=0A= void xlputc(NODE *fptr,int ch);=0A= void xlflush(void);=0A= void xlbegin(CONTEXT *cptr,int flags,NODE *expr);=0A= void xlend(CONTEXT *cptr);=0A= void xljump(CONTEXT *cptr,int type,NODE *val);=0A= void xlgo(NODE *label);=0A= void xlreturn(NODE *val);=0A= void xlthrow(NODE *tag,NODE *val);=0A= void xlsignal(char *emsg,NODE *arg);=0A= NODE *xcar(NODE *args);=0A= NODE *xcdr(NODE *args);=0A= NODE *xcaar(NODE *args);=0A= NODE *xcadr(NODE *args);=0A= NODE *xcdar(NODE *args);=0A= NODE *xcddr(NODE *args);=0A= NODE *cxr(NODE *args,char *adstr);=0A= NODE *xcons(NODE *args);=0A= NODE *xlist(NODE *args);=0A= NODE *xappend(NODE *args);=0A= NODE *xreverse(NODE *args);=0A= NODE *xlast(NODE *args);=0A= NODE *xmember(NODE *args);=0A= NODE *xassoc(NODE *args);=0A= NODE *xsubst(NODE *args);=0A= NODE *subst(NODE *to,NODE *from,NODE *expr,NODE *fcn,int tresult);=0A= NODE *xsublis(NODE *args);=0A= NODE *sublis(NODE *alist,NODE *expr,NODE *fcn,int tresult);=0A= NODE *assoc(NODE *expr,NODE *alist,NODE *fcn,int tresult);=0A= NODE *xremove(NODE *args);=0A= int dotest(NODE *arg1,NODE *arg2,NODE *fcn);=0A= NODE *xnth(NODE *args);=0A= NODE *xnthcdr(NODE *args);=0A= NODE *nth(NODE *args,int carflag);=0A= NODE *xlength(NODE *args);=0A= NODE *xmapc(NODE *args);=0A= NODE *xmapcar(NODE *args);=0A= NODE *xmapl(NODE *args);=0A= NODE *xmaplist(NODE *args);=0A= NODE *map(NODE *args,int carflag,int valflag);=0A= NODE *xrplca(NODE *args);=0A= NODE *xrplcd(NODE *args);=0A= NODE *xnconc(NODE *args);=0A= NODE *xdelete(NODE *args);=0A= NODE *xatom(NODE *args);=0A= NODE *xsymbolp(NODE *args);=0A= NODE *xnumberp(NODE *args);=0A= NODE *xboundp(NODE *args);=0A= NODE *xnull(NODE *args);=0A= NODE *xlistp(NODE *args);=0A= NODE *xconsp(NODE *args);=0A= NODE *xeq(NODE *args);=0A= NODE *xeql(NODE *args);=0A= NODE *xequal(NODE *args);=0A= NODE *cequal(NODE *args,int (Pd::*fcn)(NODE *arg1,NODE *arg2));=0A= NODE *xadd(NODE *args);=0A= NODE *xsub(NODE *args);=0A= NODE *xmul(NODE *args);=0A= NODE *xdiv(NODE *args);=0A= NODE *xrem(NODE *args);=0A= NODE *xmin(NODE *args);=0A= NODE *xmax(NODE *args);=0A= NODE *xbitand(NODE *args);=0A= NODE *xbitior(NODE *args);=0A= NODE *xbitxor(NODE *args);=0A= NODE *ibinary(NODE *args,int fcn);=0A= NODE *binary(NODE *args,int fcn);=0A= NODE *xbitnot(NODE *args);=0A= NODE *xabs(NODE *args);=0A= NODE *xadd1(NODE *args);=0A= NODE *xsub1(NODE *args);=0A= NODE *unary(NODE *args,int fcn);=0A= NODE *xminusp(NODE *args);=0A= NODE *xzerop(NODE *args);=0A= NODE *xplusp(NODE *args);=0A= NODE *xevenp(NODE *args);=0A= NODE *xoddp(NODE *args);=0A= NODE *predicate(NODE *args,int fcn);=0A= NODE *rpredicate(NODE *args,int fcn);=0A= NODE *xlss(NODE *args);=0A= NODE *xleq(NODE *args);=0A= NODE *xequ(NODE *rgs);=0A= NODE *xneq(NODE *args);=0A= NODE *xgeq(NODE *args);=0A= NODE *xgtr(NODE *args);=0A= NODE *compare(NODE *args,int fcn);=0A= NODE *rcompare(NODE *args,int fcn);=0A= NODE *xsin(NODE *args);=0A= NODE *xcos(NODE *args);=0A= NODE *xtan(NODE *args);=0A= NODE *xasin(NODE *args);=0A= NODE *xacos(NODE *args);=0A= NODE *xatan(NODE *args);=0A= NODE *xsinh(NODE *args);=0A= NODE *xcosh(NODE *args);=0A= NODE *xtanh(NODE *args);=0A= NODE *xexp(NODE *args);=0A= NODE *xlog(NODE *args);=0A= NODE *xlog10(NODE *args);=0A= NODE *xsqrt(NODE *args);=0A= NODE *xceil(NODE *args);=0A= NODE *xfloor(NODE *args);=0A= NODE *xfabs(NODE *args);=0A= NODE *trancen(NODE *args,int fcn);=0A= NODE *xint(NODE *args);=0A= NODE *xreal(NODE *args);=0A= NODE *xradians(NODE *args);=0A= NODE *xlclass(char *name,int vcnt);=0A= NODE *xlmfind(NODE *obj,NODE *msym);=0A= NODE *xlxsend(NODE *obj,NODE *msg,NODE *args);=0A= NODE *xlsend(NODE *obj,NODE *args);=0A= NODE *xlobsym(NODE *sym);=0A= NODE *mnew(NODE *dummy);=0A= NODE *misnew(NODE *args);=0A= void xladdivar(NODE *cls,char *var);=0A= NODE *entermsg(NODE *cls,NODE *msg);=0A= NODE *answer(NODE *args);=0A= NODE *mivars(NODE *args);=0A= int getivcnt(NODE *cls,int ivar);=0A= NODE *mcvars(NODE *args);=0A= NODE *defvars(NODE *args,int varnum);=0A= =0A= =0A= =0A= void xladdmsg(NODE *cls,char *msg,NODE *(Pd::*code)(NODE *));=0A= NODE *getclass(NODE *args);=0A= NODE *obshow(NODE *args);=0A= NODE *defisnew(NODE *args);=0A= NODE *sendsuper(NODE *args);=0A= NODE *findmsg(NODE *cls,NODE *sym);=0A= NODE *findvar(NODE *obj,NODE *sym);=0A= int checkvar(NODE *cls,NODE *sym);=0A= NODE *xlgetivar(NODE *obj,int num);=0A= NODE *xlsetivar(NODE *obj,int num,NODE *val);=0A= NODE *xlivar(NODE *obj,int num);=0A= NODE *xlcvar(NODE *cls,int num);=0A= NODE *makelist(int cnt);=0A= void xloinit(void);=0A= void xlprint(NODE *fptr,NODE *vptr,int flag);=0A= void xlterpri(NODE *fptr);=0A= void putstring(NODE *fptr,char *str);=0A= void putatm(NODE *fptr,char *tag,NODE *val);=0A= void putdec(NODE *fptr,int n);=0A= void putreal(NODE *fptr,float n);=0A= void putoct(NODE *fptr,int n);=0A= void putstr(NODE *fptr,char *str);=0A= int xlload(char *name,int vflag,int pflag);=0A= int xlread(NODE *fptr,NODE **pval);=0A= int parse(NODE *fptr,NODE **pval);=0A= void pcomment(NODE *fptr);=0A= NODE *plist(NODE *fptr);=0A= NODE *pstring(NODE *fptr);=0A= NODE *pquote(NODE *fptr,NODE *sym);=0A= NODE *pname(NODE *fptr);=0A= int nextch(NODE *fptr);=0A= int checkeof(NODE *fptr);=0A= int badeof(NODE *fptr);=0A= int is_number(char *str, NODE **pval);=0A= int issym(int ch);=0A= NODE *xsetf(NODE *args);=0A= void placeform(NODE *place,NODE *value);=0A= void stdprint(NODE *expr);=0A= NODE *xstrlen(NODE *args);=0A= NODE *xstrcat(NODE *args);=0A= NODE *xsubstr(NODE *args);=0A= NODE *xascii(NODE *args);=0A= NODE *xchr(NODE *args);=0A= NODE *xatoi(NODE *args);=0A= NODE *xitoa(NODE *args);=0A= void xlsubr(char *sname,int type,NODE *(Pd::*subr)(NODE *));=0A= NODE *xlarg(NODE **pargs);=0A= NODE *xlmatch(int type,NODE **pargs);=0A= NODE *xlevarg(NODE **pargs);=0A= NODE *xlevmatch(int type,NODE **pargs);=0A= void xltest(NODE **pfcn,int *ptresult,NODE **pargs);=0A= void xllastarg(NODE *args);=0A= void assign(NODE *sym,NODE *val);=0A= int eq(NODE *arg1,NODE *arg2);=0A= int eql(NODE *arg1,NODE *arg2);=0A= int equal(NODE *arg1,NODE *arg2);=0A= NODE *xlenter(char *name,int type);=0A= NODE *symenter(char *name,int type,NODE *listsym);=0A= NODE *xlsenter(char *name);=0A= NODE *xlintern(NODE *sym);=0A= NODE *xlmakesym(char *name,int type);=0A= char *xlsymname(NODE *sym);=0A= NODE *xlgetprop(NODE *sym,NODE *prp);=0A= void xlputprop(NODE *sym,NODE *val,NODE *prp);=0A= void xlremprop(NODE *sym,NODE *prp);=0A= NODE *findprop(NODE *sym,NODE *prp);=0A= void xlsinit(void);=0A= NODE *xchdir(NODE *args);=0A= NODE *xsystem(NODE *args);=0A= NODE *xload(NODE *args);=0A= NODE *xgc(NODE *args);=0A= NODE *xexpand(NODE *args);=0A= NODE *xalloc(NODE *args);=0A= NODE *xmem(NODE *args);=0A= NODE *xtype(NODE *args);=0A= NODE *xbaktrace(NODE *args);=0A= NODE *xexit(NODE *args);=0A= =0A= =0A= NODE* xtest(NODE *args); =0A= void test1(void); =0A= void test2(void); =0A= void test3(void);=0A= =0A= =0A= NODE *xprocessor(NODE *args);=0A= NODE *xsetpop(NODE *args);=0A= NODE *xtotal_messages(NODE *args);=0A= NODE *xsend_message(NODE *args);=0A= NODE *xread_message(NODE *args);=0A= =0A= # 482 "sim.h" 2=0A= =0A= =0A= # 1 "MAText/Private.h" 1=0A= =0A= =0A= =0A= =0A= MATptr newmatrix(int rows, int cols);=0A= void free_MAT(MATptr M);=0A= MATptr matrix_add_and_free(MATptr m1, MATptr m2, int fm1, int fm2);=0A= MATptr matrix_mult_and_free(MATptr m1, MATptr m2, int fm1, int fm2);=0A= MATptr copy_MAT(MATptr M);=0A= void m_init(MATptr m);=0A= void m_rand(MATptr m);=0A= void m_print(MATptr m);=0A= void m_bprint(MATptr m, int t);=0A= MATptr m_mult(MATptr a, MATptr b);=0A= MATptr m_smult(float s, MATptr a);=0A= MATptr m_pmult(MATptr a, MATptr b);=0A= MATptr m_pdiv(MATptr a, MATptr b);=0A= MATptr m_add(MATptr a, MATptr b);=0A= MATptr m_sub(MATptr a, MATptr b);=0A= void swaprows(float **p, int row1, int row2);=0A= float m_det(MATptr m);=0A= MATptr m_inv(MATptr m);=0A= MATptr m_pinv(MATptr m);=0A= MATptr m_invp(MATptr m);=0A= MATptr m_trans(MATptr m);=0A= MATptr m_adj(MATptr mat);=0A= TMATptr LU_dec(MATptr m);=0A= MATptr Filled_Matrix(float *array, int rows, int cols);=0A= MATptr RotX(float theta);=0A= MATptr RotY(float theta);=0A= MATptr RotZ(float theta);=0A= MATptr Scale(float Sx, float Sy, float Sz);=0A= MATptr Trans(float t, float u, float v);=0A= MATptr Persp(float f);=0A= void Hdiv(MATptr m);=0A= NODE *xcreate_matrix(NODE *args);=0A= NODE *xmatrix_bounds(NODE *args);=0A= NODE *xmatrix_ref(NODE *args);=0A= NODE *xmatrix_set(NODE *args);=0A= NODE *xmatrix_print(NODE *args);=0A= NODE *xmatrix_bprint(NODE *args);=0A= NODE *xmatrix_add(NODE *args);=0A= NODE *xmatrix_mul(NODE *args);=0A= NODE *xmatrix_pmul(NODE *args);=0A= NODE *xmatrix_pdiv(NODE *args);=0A= NODE *mbinary(NODE *args,int fcn);=0A= NODE *xmatrix_inv(NODE *args);=0A= NODE *xmatrix_pinv(NODE *args);=0A= NODE *munary(NODE *args,int fcn);=0A= NODE *xmatrix_smul(NODE *args);=0A= NODE *xmatrix_sub(NODE *args);=0A= NODE *xmatrix_det(NODE *args);=0A= NODE *xmatrix_trans(NODE *args);=0A= =0A= NODE *xcreate_rotx(NODE *args);=0A= NODE *xcreate_roty(NODE *args);=0A= NODE *xcreate_rotz(NODE *args);=0A= NODE *xcreate_scale(NODE *args);=0A= NODE *xcreate_trans(NODE *args);=0A= =0A= NODE *xswaprows(NODE *args);=0A= NODE *xhdiv(NODE *args);=0A= NODE *xpersp(NODE *args);=0A= NODE *xmatrix_copy(NODE *args);=0A= =0A= NODE *xrandom(NODE *args);=0A= =0A= =0A= void nrerror(char error_text[]);=0A= float *vector(int nl,int nh);=0A= int *ivector(int nl,int nh);=0A= float *dvector(int nl,int nh);=0A= float **matrix(int nrl,int nrh,int ncl,int nch);=0A= float **dmatrix(int nrl,int nrh,int ncl,int nch);=0A= int **imatrix(int nrl,int nrh,int ncl,int nch);=0A= float **submatrix(float **a,int oldrl,int oldrh,int oldcl,int = oldch,int newrl,int newcl);=0A= void free_vector(float *v,int nl,int nh);=0A= void free_ivector(int *v,int nl,int nh);=0A= void free_dvector(float *v,int nl,int nh);=0A= void free_matrix(float **m,int nrl,int nrh,int ncl,int nch);=0A= void free_dmatrix(float **m,int nrl,int nrh,int ncl,int nch);=0A= void free_imatrix(int **m,int nrl,int nrh,int ncl,int nch);=0A= void free_submatrix(float **b,int nrl,int nrh,int ncl,int nch);=0A= float **convert_dmatrix(float *a,int nrl,int nrh,int ncl,int nch);=0A= float **convert_matrix(float *a,int nrl,int nrh,int ncl,int nch);=0A= void free_convert_dmatrix(float **b,int nrl,int nrh,int ncl,int = nch);=0A= void free_convert_matrix(float **b,int nrl,int nrh,int ncl,int nch);=0A= =0A= =0A= NODE *xRawToMatrix(NODE *args);=0A= NODE *xconvolve(NODE *args);=0A= NODE *xzerot(NODE *args);=0A= NODE *xedges(NODE *args);=0A= NODE *xconnect(NODE *args);=0A= MATptr convolve(MATptr image, MATptr mask);=0A= MATptr zerot(MATptr image, MATptr mask);=0A= MATptr edges(MATptr image, MATptr mask);=0A= MATptr connect(MATptr image);=0A= =0A= =0A= =0A= NODE *OpenPicFile(NODE *args);=0A= NODE *ClosePicFile(NODE *args);=0A= NODE *LoadPicHeader(NODE *args);=0A= NODE *LoadPicColormap(NODE *args);=0A= NODE *LoadPicData(NODE *args);=0A= NODE *WritePicToFile(NODE *args);=0A= NODE *PicHeaderToMatrix(NODE *args);=0A= NODE *PicColormapToMatrix(NODE *args);=0A= NODE *PicDataToMatrix(NODE *args);=0A= NODE *MatrixToPicHeader(NODE *args);=0A= NODE *MatrixToPicColormap(NODE *args);=0A= NODE *MatrixToPicData(NODE *args);=0A= =0A= # 484 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NMRext/Private.h" 1=0A= =0A= =0A= =0A= void balanc(float **a,int n);=0A= void bcucof(float y[],float y1[],float y2[],float y12[],float = d1,float d2,float **c); =0A= void bcuint(float y[],float y1[],float y2[],float y12[],float = x1l,float x1u,=0A= float x2l, float x2u,float x1,float x2,float *ansy,float = *ansy1,float *ansy2);=0A= void eigsrt(float d[],float **v,int n);=0A= void elmhes(float **a,int n);=0A= float gasdev(int *idum);=0A= void hqr(float **a,int n,float wr[],float wi[]);=0A= void jacobi(float **a,int n,float d[],float **v,int *nrot);=0A= void polcoe(float x[],float y[],int n,float cof[]);=0A= void polin2(float x1a[],float x2a[],float **ya,int m,int n,float = x1,=0A= float x2,float *y,float *dy);=0A= void polint(float xa[],float ya[],int n,float x,float *y,float = *dy);=0A= float ran1(int *idum);=0A= void ratint(float xa[],float ya[],int n,float x,float *y,float = *dy);=0A= void tqli(float d[],float e[],int n,float **z);=0A= void tred2(float **a,int n,float d[],float e[]);=0A= void splie2(float x1[], float x2[], float **y, int m, int n, = float **y2);=0A= void splin2(float x1[], float x2[], float **y, float **y2, int = m, int n,=0A= float xx1, float xx2, float *f);=0A= void splint(float xa[], float ya[], float y2a[], int n, float = x,float *y);=0A= void spline(float x[], float y[], int n, float yp1, float ypn, = float y2[]);=0A= =0A= =0A= NODE *xbalanc(NODE *args);=0A= NODE *xbcucof(NODE *args);=0A= NODE *xbcuint(NODE *args);=0A= NODE *xeigsrt(NODE *args); =0A= NODE *xelmhes(NODE *args);=0A= NODE *xgasdev(NODE *args);=0A= NODE *xhqr(NODE *args);=0A= NODE *xjacobi(NODE *args);=0A= NODE *xpolcoe(NODE *args);=0A= NODE *xpolin2(NODE *args);=0A= NODE *xpolint(NODE *args); =0A= NODE *xran1(NODE *args);=0A= NODE *xratint(NODE *args); =0A= NODE *xtqli(NODE *args);=0A= NODE *xtred2(NODE *args);=0A= NODE *xsplie2(NODE *args);=0A= NODE *xsplin2(NODE *args);=0A= =0A= =0A= # 487 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "NEText/Private.h" 1=0A= =0A= =0A= NODE *xClientSocket(NODE * args);=0A= NODE *xServerSocket(NODE * args);=0A= NODE *xAccept(NODE * args);=0A= NODE *xReadChar(NODE * args);=0A= NODE *xWriteChar(NODE * args);=0A= NODE *xReadInt(NODE * args);=0A= NODE *xWriteInt(NODE * args);=0A= NODE *xReadReal(NODE * args);=0A= NODE *xWriteReal(NODE * args);=0A= NODE *xReadString(NODE * args);=0A= NODE *xWriteString(NODE * args);=0A= NODE *xSendImage(NODE * args);=0A= NODE *xReceiveImage(NODE * args);=0A= =0A= NODE *WriteStr(NODE *args);=0A= NODE *WriteNumber(NODE *args);=0A= NODE *WriteNewline(NODE *args);=0A= =0A= NODE *xgetch(NODE *args); =0A= =0A= NODE *Exec(NODE *args); =0A= NODE *InitCommandIO(NODE *args); =0A= NODE *CloseCommandIO(NODE *args); =0A= NODE *Shell(NODE *args); =0A= NODE *FShell(NODE *args); =0A= =0A= # 490 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "Xext/Private.h" 1=0A= =0A= =0A= NODE *init_turtlegr(NODE *args);=0A= NODE *close_turtlegr(NODE *args);=0A= NODE *gr_mode(NODE *args);=0A= NODE *gr_txtmode(NODE *args);=0A= NODE *gr_available(NODE *args);=0A= NODE *gr_cleargraph(NODE *args);=0A= NODE *gr_line(NODE *args);=0A= =0A= NODE *gr_open_window(NODE *args);=0A= NODE *gr_destroy_window(NODE *args);=0A= NODE *gr_map_window(NODE *args);=0A= NODE *gr_unmap_window(NODE *args);=0A= NODE *gr_set_window(NODE *args);=0A= NODE *gr_set_default_window(NODE *args);=0A= NODE *gr_get_default_window(NODE *args);=0A= =0A= =0A= =0A= =0A= NODE *JoyB1(NODE *args); =0A= NODE *JoyB1Press(NODE *args);=0A= NODE *JoyB2(NODE *args); =0A= NODE *JoyB2Press(NODE *args);=0A= NODE *JoyState(NODE *args);=0A= NODE *InitJoy(NODE *args); =0A= NODE *DeInitJoy(NODE *args);=0A= NODE *JoyX(NODE *args);=0A= NODE *JoyY(NODE *args); =0A= NODE *B1Inc(NODE *args); =0A= NODE *B2Inc(NODE *args);=0A= =0A= =0A= =0A= =0A= NODE *MatrixToPixmap(NODE *args);=0A= NODE *PixmapToMatrix(NODE *args);=0A= NODE *PicToPixmap(NODE *args);=0A= NODE *PixmapToPic(NODE *args); =0A= NODE *WriteFileFromPixmap(NODE *args);=0A= NODE *ReadFileToPixmap(NODE *args);=0A= NODE *DisplayPixmap(NODE *args);=0A= NODE *ClearPixmapOnDisplay(NODE *args);=0A= NODE *DestroyPixmap(NODE *args);=0A= ApPixmap *MallocApPixmap(void);=0A= =0A= NODE *AllocListOfInt(int n);=0A= NODE *AllocListOfReal(int n);=0A= NODE *RealArrayToList(float *array, int n);=0A= NODE *IntArrayToList(int *array, int n);=0A= NODE *CharArrayToList(unsigned char *array, int n);=0A= float *ListToRealArray(NODE *list, int *length);=0A= int *ListToIntArray(NODE *list, int *length);=0A= unsigned char *ListToCharArray(NODE *list, int *length);=0A= int LengthList(NODE *list);=0A= NODE *getpixel16(NODE * args);=0A= NODE *putpixel16(NODE * args);=0A= NODE *getpixel32(NODE * args);=0A= NODE *putpixel32(NODE * args);=0A= NODE *getpixel(NODE * args);=0A= NODE *putpixel(NODE * args);=0A= =0A= NODE *rgb_to_hsv(NODE * args);=0A= NODE *hsv_to_rgb(NODE * args);=0A= =0A= NODE *display_pixels(NODE * args);=0A= NODE *xdisplay_image(NODE * args);=0A= =0A= # 493 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XText/Private.h" 1=0A= =0A= =0A= =0A= =0A= =0A= void SetupXtTypes(void);=0A= void CreateClassName( WidgetClass wc, char *name);=0A= void CreateResourceName( char *XtN, char *name);=0A= NODE *ApInitialize(NODE *args);=0A= NODE *ApClose(NODE *args);=0A= NODE *ApSetDrawable(NODE *args);=0A= NODE *ApSetArg(NODE *args);=0A= NODE *ApCreateManagedWidget(NODE *args);=0A= NODE *ApSync(NODE *args);=0A= NODE *ApFlush(NODE *args);=0A= NODE *ApDestroyWidget(NODE *args);=0A= NODE *ApMapWidget(NODE *args);=0A= NODE *ApUnmapWidget(NODE *args);=0A= NODE *ApUnmapWindow(NODE *args);=0A= NODE *ApUnmapSubwindows(NODE *args);=0A= NODE *ApUnrealiseWidget(NODE *args);=0A= NODE *ApRealiseWidget(NODE *args);=0A= NODE *ApManageChild(NODE *args);=0A= NODE *ApManageChildren(NODE *args);=0A= NODE *ApAddCallback(NODE *args);=0A= NODE *ApAddEventHandler(NODE *args);=0A= NODE *ApMainLoop(NODE *args);=0A= NODE *ApExitMainLoop(NODE *args);=0A= NODE *ApInitGraphics(NODE *args);=0A= NODE *ApWindow(NODE *args);=0A= =0A= # 496 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XAWext/Private.h" 1=0A= =0A= =0A= =0A= void SetupXawTypes(void);=0A= =0A= # 499 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "TGRext/Private.h" 1=0A= =0A= =0A= =0A= =0A= NODE *gr_helpgr(NODE *args);=0A= NODE *gr_helpturtlegr(NODE *args);=0A= NODE *gr_maxx(NODE *args);=0A= NODE *gr_maxy(NODE *args);=0A= NODE *gr_maxc(NODE *args);=0A= NODE *gr_validXYC(NODE *args);=0A= NODE *gr_setdot(NODE *args);=0A= NODE *gr_getdot(NODE *args);=0A= NODE *gr_draw(node *args);=0A= NODE *gr_move(NODE *args);=0A= NODE *gr_drawto(NODE *args);=0A= NODE *gr_drawTo( NODE *args );=0A= NODE *gr_moveTo(NODE *args );=0A= NODE *gr_setcolor( NODE *args );=0A= NODE *gr_turnright( NODE *args );=0A= NODE *gr_turnleft( NODE *args );=0A= NODE *gr_turnto( NODE *args );=0A= NODE *gr_gotohome(NODE *args);=0A= NODE *gr_gotocenter(NODE *args);=0A= NODE *gr_gotonw(NODE *args);=0A= NODE *gr_gotosw(NODE *args);=0A= NODE *gr_gotone(NODE *args);=0A= NODE *gr_gotose(NODE *args);=0A= NODE *gr_whatcolor(NODE *args);=0A= NODE *gr_whatdirection(NODE *args);=0A= NODE *gr_wherex(NODE *args);=0A= NODE *gr_wherey(NODE *args);=0A= =0A= # 502 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "XMext/Private.h" 1=0A= =0A= =0A= NODE *ApCreateMainWindow(NODE * args);=0A= NODE *ApCreateMenuBar(NODE * args);=0A= NODE *ApCreatePulldownMenu(NODE * args);=0A= NODE *ApCreateCascadeButton(NODE * args);=0A= NODE *ApCreatePushButtonGadget(NODE * args);=0A= NODE *ApCreateForm(NODE * args);=0A= NODE *ApCreateDrawingArea(NODE * args);=0A= NODE *ApAddXmCallback(NODE * args);=0A= =0A= void SetupXmTypes(void);=0A= void CreateXmClassName(WidgetClass wc, char *name);=0A= void CreateXmResourceName(char *XmN, char *name);=0A= void CreateXmDefaultName(int Xm, char *name);=0A= =0A= =0A= # 505 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SVext/Private.h" 1=0A= =0A= =0A= NODE *ApTestImaging(NODE * args);=0A= =0A= # 508 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/Private.h" 1=0A= =0A= =0A= NODE *init_ray(NODE *args);=0A= NODE *setup_geometry(NODE *args);=0A= NODE *render_objects(NODE *args);=0A= NODE *close_ray(NODE *args);=0A= NODE *make_pixels(NODE *args);=0A= =0A= NODE *make_3d(NODE *args);=0A= NODE *make_triangle(NODE *args);=0A= NODE *make_patch(NODE *args);=0A= NODE *make_light(NODE *args);=0A= NODE *make_surface(NODE *args);=0A= NODE *make_color(NODE *args);=0A= =0A= NODE *t_vec_frame(NODE *args);=0A= NODE *t_crossp(NODE *args);=0A= NODE *t_norm_crossp(NODE *args);=0A= NODE *t_dotp(NODE *args);=0A= NODE *t_normalize(NODE *args);=0A= =0A= void FreeObject(t_object *obj);=0A= =0A= float brightness(int source, int lnum, t_3d *pos, t_3d *ray);=0A= int crossp(t_3d *o, t_3d *a, t_3d *b);=0A= float dotp( t_3d *a, t_3d *b);=0A= int vec_frame(t_3d *vector, t_3d *uaxis, t_3d *vaxis);=0A= int norm_crossp(t_3d *o, t_3d *a, t_3d *b);=0A= int endpic(void);=0A= int gammacorrect(float intensity);=0A= float intersect(int source, t_3d *pos, t_3d *ray, t_color *color);=0A= int lightray(int lnum, t_3d *objpos, t_3d *lray);=0A= int linepic(float *pixels, int line);=0A= float normalize( t_3d *a);=0A= int shade(t_3d *pos, t_3d *ray, t_3d *nrm, t_object *obj, t_color = *color);=0A= int startpic(char *fname, int y, int x);=0A= int viewing( t_3d *scrnx, t_3d *scrny, t_3d *firstray);=0A= =0A= t_object *maktri (int surf, t_3d *p1, t_3d *p2, t_3d *p3);=0A= t_object *makptch(int surf, t_3d *p1, t_3d *p2, t_3d *p3, t_3d *p4);=0A= =0A= float inttri (t_3d *pos, t_3d *ray, t_object *obj);=0A= float intptch(t_3d *pos, t_3d *ray, t_object *obj);=0A= =0A= int nrmtri(t_3d *pos, t_object *obj, t_3d *nrm);=0A= int nrmptch(t_3d *pos, t_object *obj, t_3d *nrm);=0A= =0A= int makepixels(int sizey, int sizex);=0A= o_triangle *makfacet(t_3d *p1, t_3d *p2, t_3d *p3);=0A= =0A= # 517 "sim.h" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/Private.h" 1=0A= =0A= =0A= =0A= =0A= NODE *edit(NODE *args);=0A= NODE *re_edit(NODE *args);=0A= void exec_lvi(char *filename);=0A= =0A= # 523 "sim.h" 2=0A= =0A= =0A= =0A= # 1 "SYMext/Private.h" 1=0A= =0A= =0A= # 526 "sim.h" 2=0A= =0A= =0A= =0A= struct fdef ftab[1000];=0A= =0A= };=0A= =0A= void exitpe(int n);=0A= # 1 "ftab.cpp" 2=0A= =0A= =0A= void Pd::init_ftab(void)=0A= {=0A= int i;=0A= =0A= struct fdef ftab_tmp[] =3D {=0A= =0A= =0A= {"eval", 1 , &Pd::xeval},=0A= {"apply", 1 , &Pd::xapply},=0A= {"funcall", 1 , &Pd::xfuncall},=0A= {"quote", 2 , &Pd::xquote},=0A= {"function", 2 , &Pd::xquote},=0A= {"backquote", 2 , &Pd::xbquote},=0A= =0A= =0A= {"set", 1 , &Pd::xset},=0A= {"setq", 2 , &Pd::xsetq},=0A= {"setf", 2 , &Pd::xsetf},=0A= {"defun", 2 , &Pd::xdefun},=0A= {"defmacro", 2 , &Pd::xdefmacro},=0A= {"gensym", 1 , &Pd::xgensym},=0A= {"make-symbol", 1 , &Pd::xmakesymbol},=0A= {"intern", 1 , &Pd::xintern},=0A= {"symbol-name", 1 , &Pd::xsymname},=0A= {"symbol-value", 1 , &Pd::xsymvalue},=0A= {"symbol-plist", 1 , &Pd::xsymplist},=0A= {"get", 1 , &Pd::xget},=0A= {"remprop", 1 , &Pd::xremprop},=0A= =0A= =0A= {"car", 1 , &Pd::xcar},=0A= {"caar", 1 , &Pd::xcaar},=0A= {"cadr", 1 , &Pd::xcadr},=0A= {"cdr", 1 , &Pd::xcdr},=0A= {"cdar", 1 , &Pd::xcdar},=0A= {"cddr", 1 , &Pd::xcddr},=0A= {"cons", 1 , &Pd::xcons},=0A= {"list", 1 , &Pd::xlist},=0A= {"append", 1 , &Pd::xappend},=0A= {"reverse", 1 , &Pd::xreverse},=0A= {"last", 1 , &Pd::xlast},=0A= {"nth", 1 , &Pd::xnth},=0A= {"nthcdr", 1 , &Pd::xnthcdr},=0A= {"member", 1 , &Pd::xmember},=0A= {"assoc", 1 , &Pd::xassoc},=0A= {"subst", 1 , &Pd::xsubst},=0A= {"sublis", 1 , &Pd::xsublis},=0A= {"remove", 1 , &Pd::xremove},=0A= {"length", 1 , &Pd::xlength},=0A= {"mapc", 1 , &Pd::xmapc},=0A= {"mapcar", 1 , &Pd::xmapcar},=0A= {"mapl", 1 , &Pd::xmapl},=0A= {"maplist", 1 , &Pd::xmaplist},=0A= =0A= =0A= {"rplaca", 1 , &Pd::xrplca},=0A= {"rplacd", 1 , &Pd::xrplcd},=0A= {"nconc", 1 , &Pd::xnconc},=0A= {"delete", 1 , &Pd::xdelete},=0A= =0A= =0A= {"atom", 1 , &Pd::xatom},=0A= {"symbolp", 1 , &Pd::xsymbolp},=0A= {"numberp", 1 , &Pd::xnumberp},=0A= {"boundp", 1 , &Pd::xboundp},=0A= {"null", 1 , &Pd::xnull},=0A= {"not", 1 , &Pd::xnull},=0A= {"listp", 1 , &Pd::xlistp},=0A= {"consp", 1 , &Pd::xconsp},=0A= {"minusp", 1 , &Pd::xminusp},=0A= {"zerop", 1 , &Pd::xzerop},=0A= {"plusp", 1 , &Pd::xplusp},=0A= {"evenp", 1 , &Pd::xevenp},=0A= {"oddp", 1 , &Pd::xoddp},=0A= {"eq", 1 , &Pd::xeq},=0A= {"eql", 1 , &Pd::xeql},=0A= {"equal", 1 , &Pd::xequal},=0A= =0A= =0A= {"cond", 2 , &Pd::xcond},=0A= {"and", 2 , &Pd::xand},=0A= {"or", 2 , &Pd::xxor},=0A= {"let", 2 , &Pd::xlet},=0A= {"let*", 2 , &Pd::xletstar},=0A= {"if", 2 , &Pd::xif},=0A= {"prog", 2 , &Pd::xprog},=0A= {"prog*", 2 , &Pd::xprogstar},=0A= {"prog1", 2 , &Pd::xprog1},=0A= {"prog2", 2 , &Pd::xprog2},=0A= {"progn", 2 , &Pd::xprogn},=0A= {"go", 2 , &Pd::xgo},=0A= {"return", 1 , &Pd::xreturn},=0A= {"do", 2 , &Pd::xdo},=0A= {"do*", 2 , &Pd::xdostar},=0A= {"dolist", 2 , &Pd::xdolist},=0A= {"dotimes", 2 , &Pd::xdotimes},=0A= {"catch", 2 , &Pd::xcatch},=0A= {"throw", 1 , &Pd::xthrow},=0A= =0A= =0A= {"error", 1 , &Pd::xerror},=0A= {"cerror", 1 , &Pd::xcerror},=0A= {"break", 1 , &Pd::xbreak},=0A= {"errset", 2 , &Pd::xerrset},=0A= {"baktrace", 1 , &Pd::xbaktrace},=0A= {"evalhook", 1 , &Pd::xevalhook},=0A= =0A= =0A= {"+", 1 , &Pd::xadd},=0A= {"-", 1 , &Pd::xsub},=0A= {"*", 1 , &Pd::xmul},=0A= {"/", 1 , &Pd::xdiv},=0A= {"1+", 1 , &Pd::xadd1},=0A= {"1-", 1 , &Pd::xsub1},=0A= {"rem", 1 , &Pd::xrem},=0A= {"min", 1 , &Pd::xmin},=0A= {"max", 1 , &Pd::xmax},=0A= {"abs", 1 , &Pd::xabs},=0A= =0A= {"sin", 1 , &Pd::xsin},=0A= {"cos", 1 , &Pd::xcos},=0A= {"tan", 1 , &Pd::xtan},=0A= {"asin", 1 , &Pd::xasin},=0A= {"acos", 1 , &Pd::xacos},=0A= {"atan", 1 , &Pd::xatan},=0A= {"sinh", 1 , &Pd::xsinh},=0A= {"cosh", 1 , &Pd::xcosh},=0A= {"tanh", 1 , &Pd::xtanh},=0A= {"exp", 1 , &Pd::xexp},=0A= {"log", 1 , &Pd::xlog},=0A= {"log10", 1 , &Pd::xlog10},=0A= {"sqrt", 1 , &Pd::xsqrt},=0A= {"ceil", 1 , &Pd::xceil},=0A= {"floor", 1 , &Pd::xfloor},=0A= {"fabs", 1 , &Pd::xfabs},=0A= {"int", 1 , &Pd::xint},=0A= {"real", 1 , &Pd::xreal},=0A= {"radians", 1 , &Pd::xradians},=0A= =0A= =0A= {"bit-and", 1 , &Pd::xbitand},=0A= {"bit-ior", 1 , &Pd::xbitior},=0A= {"bit-xor", 1 , &Pd::xbitxor},=0A= {"bit-not", 1 , &Pd::xbitnot},=0A= =0A= =0A= {"<", 1 , &Pd::xlss},=0A= {"<=3D", 1 , &Pd::xleq},=0A= {"=3D", 1 , &Pd::xequ},=0A= {"/=3D", 1 , &Pd::xneq},=0A= {">=3D", 1 , &Pd::xgeq},=0A= {">", 1 , &Pd::xgtr},=0A= =0A= =0A= {"strlen", 1 , &Pd::xstrlen},=0A= {"strcat", 1 , &Pd::xstrcat},=0A= {"substr", 1 , &Pd::xsubstr},=0A= {"ascii", 1 , &Pd::xascii},=0A= {"chr", 1 , &Pd::xchr},=0A= {"atoi", 1 , &Pd::xatoi},=0A= {"itoa", 1 , &Pd::xitoa},=0A= =0A= =0A= {"read", 1 , &Pd::xread},=0A= {"print", 1 , &Pd::xprint},=0A= {"prin1", 1 , &Pd::xprin1},=0A= {"princ", 1 , &Pd::xprinc},=0A= {"terpri", 1 , &Pd::xterpri},=0A= {"flatsize", 1 , &Pd::xflatsize},=0A= {"flatc", 1 , &Pd::xflatc},=0A= {"explode", 1 , &Pd::xexplode},=0A= {"explodec", 1 , &Pd::xexplc},=0A= {"implode", 1 , &Pd::ximplode},=0A= {"maknam", 1 , &Pd::xmaknam},=0A= =0A= =0A= {"openi", 1 , &Pd::xopeni},=0A= {"openo", 1 , &Pd::xopeno},=0A= {"close", 1 , &Pd::xclose},=0A= {"read-char", 1 , &Pd::xrdchar},=0A= {"peek-char", 1 , &Pd::xpkchar},=0A= {"write-char", 1 , &Pd::xwrchar},=0A= {"readline", 1 , &Pd::xreadline},=0A= =0A= =0A= {"chdir", 1 , &Pd::xchdir},=0A= {"system", 1 , &Pd::xsystem},=0A= {"load", 1 , &Pd::xload},=0A= {"gc", 1 , &Pd::xgc},=0A= {"expand", 1 , &Pd::xexpand},=0A= {"alloc", 1 , &Pd::xalloc},=0A= {"mem", 1 , &Pd::xmem},=0A= {"type", 1 , &Pd::xtype},=0A= {"exit", 1 , &Pd::xexit},=0A= =0A= { "xlobsym", 1 , &Pd::xlobsym },=0A= { "new", 1 , &Pd::mnew },=0A= { "isnew", 1 , &Pd::misnew },=0A= { "answer", 1 , &Pd::answer },=0A= { "ivars", 1 , &Pd::mivars },=0A= { "cvars", 1 , &Pd::mcvars },=0A= { "getclass", 1 , &Pd::getclass },=0A= { "obshow", 1 , &Pd::obshow },=0A= { "defisnew", 1 , &Pd::defisnew },=0A= { "sendsuper", 1 , &Pd::sendsuper },=0A= =0A= =0A= {"pe", 1 , &Pd::xprocessor},=0A= {"setpop", 1 , &Pd::xsetpop},=0A= {"total-messages", 1 , &Pd::xtotal_messages},=0A= {"send-message", 1 , &Pd::xsend_message},=0A= {"read-message", 1 , &Pd::xread_message},=0A= =0A= =0A= {"test", 1 , &Pd::xtest},=0A= =0A= =0A= # 1 "MAText/Ftab.h" 1=0A= =0A= =0A= =0A= {"create-matrix", 1 , &Pd::xcreate_matrix},=0A= {"matrix-bounds", 1 , &Pd::xmatrix_bounds},=0A= {"matrix-ref", 1 , &Pd::xmatrix_ref},=0A= {"matrix-set", 1 , &Pd::xmatrix_set},=0A= {"matrix-print", 1 , &Pd::xmatrix_print},=0A= {"matrix-bprint", 1 , &Pd::xmatrix_bprint},=0A= {"matrix-add", 1 , &Pd::xmatrix_add},=0A= {"matrix-sub", 1 , &Pd::xmatrix_sub},=0A= {"matrix-mul", 1 , &Pd::xmatrix_mul},=0A= {"matrix-smul", 1 , &Pd::xmatrix_smul},=0A= {"matrix-pmul", 1 , &Pd::xmatrix_pmul},=0A= {"matrix-pdiv", 1 , &Pd::xmatrix_pdiv},=0A= {"matrix-inv", 1 , &Pd::xmatrix_inv},=0A= {"matrix-pinv", 1 , &Pd::xmatrix_pinv},=0A= {"matrix-det", 1 , &Pd::xmatrix_det},=0A= {"matrix-trans", 1 , &Pd::xmatrix_trans},=0A= {"create-rotx", 1 , &Pd::xcreate_rotx},=0A= {"create-roty", 1 , &Pd::xcreate_roty},=0A= {"create-rotz", 1 , &Pd::xcreate_rotz},=0A= {"create-scale", 1 , &Pd::xcreate_scale},=0A= {"create-trans", 1 , &Pd::xcreate_trans},=0A= {"swaprows", 1 , &Pd::xswaprows},=0A= {"hdiv", 1 , &Pd::xhdiv},=0A= {"persp", 1 , &Pd::xpersp},=0A= {"matrix-copy", 1 , &Pd::xmatrix_copy},=0A= =0A= =0A= {"RawToMatrix", 1 , &Pd::xRawToMatrix},=0A= {"convolve", 1 , &Pd::xconvolve},=0A= {"zerot", 1 , &Pd::xzerot},=0A= {"edges", 1 , &Pd::xedges},=0A= {"connect", 1 , &Pd::xconnect},=0A= =0A= =0A= {"OpenPicFile", 1 , &Pd::OpenPicFile},=0A= {"ClosePicFile", 1 , &Pd::ClosePicFile},=0A= {"LoadPicHeader", 1 , &Pd::LoadPicHeader},=0A= {"LoadPicColormap", 1 , &Pd::LoadPicColormap},=0A= {"LoadPicData", 1 , &Pd::LoadPicData},=0A= {"WritePicToFile", 1 , &Pd::WritePicToFile},=0A= {"PicHeaderToMatrix", 1 , &Pd::PicHeaderToMatrix},=0A= {"PicColormapToMatrix", 1 , &Pd::PicColormapToMatrix},=0A= {"PicDataToMatrix", 1 , &Pd::PicDataToMatrix},=0A= {"MatrixToPicHeader", 1 , &Pd::MatrixToPicHeader},=0A= {"MatrixToPicColormap", 1 , &Pd::MatrixToPicColormap},=0A= {"MatrixToPicData", 1 , &Pd::MatrixToPicData},=0A= =0A= {"random", 1 , &Pd::xrandom},=0A= =0A= # 220 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "NMRext/Ftab.h" 1=0A= =0A= =0A= =0A= =0A= {"balanc", 1 , &Pd::xbalanc},=0A= {"bcucof", 1 , &Pd::xbcucof}, =0A= {"bcuint", 1 , &Pd::xbcuint},=0A= {"eigen-sort", 1 , &Pd::xeigsrt},=0A= {"elmhes", 1 , &Pd::xelmhes},=0A= {"gasdev", 1 , &Pd::xgasdev},=0A= {"hqr", 1 , &Pd::xhqr},=0A= {"jacobi", 1 , &Pd::xjacobi},=0A= {"polcoe", 1 , &Pd::xpolcoe},=0A= {"polin2", 1 , &Pd::xpolin2},=0A= {"polint", 1 , &Pd::xpolint},=0A= {"ran1", 1 , &Pd::xran1},=0A= {"ratint", 1 , &Pd::xratint},=0A= {"tqli", 1 , &Pd::xtqli},=0A= {"tred2", 1 , &Pd::xtred2},=0A= {"splie2", 1 , &Pd::xsplie2},=0A= {"splin2", 1 , &Pd::xsplin2},=0A= =0A= =0A= # 223 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "NEText/Ftab.h" 1=0A= =0A= =0A= {"ClientSocket", 1 , &Pd::xClientSocket },=0A= {"ServerSocket", 1 , &Pd::xServerSocket },=0A= {"Accept", 1 , &Pd::xAccept },=0A= {"ReadChar", 1 , &Pd::xReadChar },=0A= {"WriteChar", 1 , &Pd::xWriteChar },=0A= {"ReadInt", 1 , &Pd::xReadInt },=0A= {"WriteInt", 1 , &Pd::xWriteInt },=0A= {"ReadReal", 1 , &Pd::xReadReal },=0A= {"WriteReal", 1 , &Pd::xWriteReal },=0A= {"ReadString", 1 , &Pd::xReadString },=0A= {"WriteString", 1 , &Pd::xWriteString },=0A= {"SendImage", 1 , &Pd::xSendImage },=0A= {"ReceiveImage", 1 , &Pd::xReceiveImage },=0A= =0A= {"wstr", 1 , &Pd::WriteStr },=0A= {"wnumber", 1 , &Pd::WriteNumber },=0A= {"wnewline", 1 , &Pd::WriteNewline },=0A= =0A= {"getch", 1 , &Pd::xgetch},=0A= =0A= {"InitExec", 1 , &Pd::InitCommandIO},=0A= {"Exec", 1 , &Pd::Exec},=0A= {"CloseExec", 1 , &Pd::CloseCommandIO},=0A= {"!", 1 , &Pd::Shell},=0A= {"!!", 2 , &Pd::FShell},=0A= =0A= # 226 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "Xext/Ftab.h" 1=0A= =0A= =0A= {"init-graphics!", 1 , &Pd::init_turtlegr},=0A= {"close-graphics!", 1 , &Pd::close_turtlegr},=0A= {"graphics-mode!", 1 , &Pd::gr_mode},=0A= {"text-mode!", 1 , &Pd::gr_txtmode},=0A= {"graphics-avail?", 1 , &Pd::gr_available},=0A= {"clear-graphics!", 1 , &Pd::gr_cleargraph},=0A= =0A= {"open-window", 1 , &Pd::gr_open_window},=0A= {"destroy-window", 1 , &Pd::gr_destroy_window},=0A= {"map-window", 1 , &Pd::gr_map_window},=0A= {"unmap-window", 1 , &Pd::gr_unmap_window},=0A= {"set-window", 1 , &Pd::gr_set_window},=0A= {"set-default-window", 1 , &Pd::gr_set_default_window},=0A= {"get-default-window", 1 , &Pd::gr_get_default_window},=0A= =0A= =0A= =0A= =0A= {"joy-b1press", 1 , &Pd::JoyB1Press},=0A= {"joy-b1", 1 , &Pd::JoyB1},=0A= {"joy-b2press", 1 , &Pd::JoyB2Press},=0A= {"joy-b2", 1 , &Pd::JoyB2},=0A= {"joy-state", 1 , &Pd::JoyState},=0A= {"init-joy", 1 , &Pd::InitJoy},=0A= {"deinit-joy", 1 , &Pd::DeInitJoy},=0A= {"joy-x", 1 , &Pd::JoyX}, =0A= {"joy-y", 1 , &Pd::JoyY},=0A= {"inc-b1", 1 , &Pd::B1Inc}, =0A= {"inc-b2", 1 , &Pd::B1Inc},=0A= =0A= =0A= =0A= =0A= {"line", 1 , &Pd::gr_line},=0A= {"display-image", 1 , &Pd::xdisplay_image},=0A= {"MatrixToPixmap", 1 , &Pd::MatrixToPixmap},=0A= {"PixmapToMatrix", 1 , &Pd::PixmapToMatrix},=0A= {"PicToPixmap", 1 , &Pd::PicToPixmap},=0A= {"PixmapToPic", 1 , &Pd::PixmapToPic},=0A= {"WriteFileFromPixmap", 1 , &Pd::WriteFileFromPixmap},=0A= {"ReadFileToPixmap", 1 , &Pd::ReadFileToPixmap},=0A= {"DisplayPixmap", 1 , &Pd::DisplayPixmap},=0A= {"ClearPixmapOnDisplay", 1 , &Pd::ClearPixmapOnDisplay},=0A= {"DestroyPixmap", 1 , &Pd::DestroyPixmap},=0A= =0A= {"get-pixel", 1 , &Pd::getpixel},=0A= {"put-pixel", 1 , &Pd::putpixel},=0A= =0A= {"hsv-to-rgb", 1 , &Pd::hsv_to_rgb},=0A= {"rgb-to-hsv", 1 , &Pd::rgb_to_hsv},=0A= =0A= {"display-pixels", 1 , &Pd::display_pixels},=0A= =0A= # 229 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "XText/Ftab.h" 1=0A= =0A= =0A= =0A= {"ApInitialize", 1 , &Pd::ApInitialize},=0A= {"ApClose", 1 , &Pd::ApClose},=0A= {"ApSetDrawable", 1 , &Pd::ApSetDrawable},=0A= {"ApSetArg", 1 , &Pd::ApSetArg},=0A= {"ApCreateManagedWidget", 1 , &Pd::ApCreateManagedWidget},=0A= {"ApUnrealiseWidget", 1 , &Pd::ApUnrealiseWidget},=0A= {"ApRealiseWidget", 1 , &Pd::ApRealiseWidget},=0A= {"ApSync", 1 , &Pd::ApSync},=0A= {"ApFlush", 1 , &Pd::ApFlush},=0A= {"ApDestroyWidget", 1 , &Pd::ApDestroyWidget},=0A= {"ApMapWidget", 1 , &Pd::ApMapWidget},=0A= {"ApUnmapWidget", 1 , &Pd::ApUnmapWidget},=0A= {"ApUnmapWindow", 1 , &Pd::ApUnmapWindow},=0A= {"ApUnmapSubwindows", 1 , &Pd::ApUnmapSubwindows},=0A= {"ApManageChild", 1 , &Pd::ApManageChild},=0A= {"ApManageChildren", 1 , &Pd::ApManageChildren},=0A= {"ApAddCallback", 1 , &Pd::ApAddCallback},=0A= {"ApAddEventHandler", 1 , &Pd::ApAddEventHandler},=0A= {"ApMainLoop", 1 , &Pd::ApMainLoop},=0A= {"ApExitMainLoop", 1 , &Pd::ApExitMainLoop},=0A= {"ApInitGraphics", 1 , &Pd::ApInitGraphics},=0A= {"ApWindow", 1 , &Pd::ApWindow},=0A= =0A= # 232 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "XAWext/Ftab.h" 1=0A= =0A= =0A= # 235 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "TGRext/Ftab.h" 1=0A= =0A= =0A= =0A= =0A= {"help-gr", 1 , &Pd::gr_helpgr},=0A= {"help-turtlegr", 1 , &Pd::gr_helpturtlegr},=0A= {"max-x", 1 , &Pd::gr_maxx},=0A= {"max-y", 1 , &Pd::gr_maxy},=0A= {"max-color", 1 , &Pd::gr_maxc},=0A= {"what-color", 1 , &Pd::gr_whatcolor},=0A= {"what-direction", 1 , &Pd::gr_whatdirection},=0A= {"where-x", 1 , &Pd::gr_wherex},=0A= {"where-y", 1 , &Pd::gr_wherey},=0A= {"goto-home!", 1 , &Pd::gr_gotohome},=0A= {"goto-center!", 1 , &Pd::gr_gotocenter},=0A= {"goto-nw!", 1 , &Pd::gr_gotonw},=0A= {"goto-sw!", 1 , &Pd::gr_gotosw},=0A= {"goto-ne!", 1 , &Pd::gr_gotone},=0A= {"goto-se!", 1 , &Pd::gr_gotose},=0A= =0A= {"move", 1 , &Pd::gr_move},=0A= {"set-color!", 1 , &Pd::gr_setcolor},=0A= {"turn-right", 1 , &Pd::gr_turnright},=0A= {"turn-left", 1 , &Pd::gr_turnleft},=0A= {"turn-to!", 1 , &Pd::gr_turnto},=0A= =0A= {"get-dot", 1 , &Pd::gr_getdot},=0A= {"draw-to!", 1 , &Pd::gr_drawTo},=0A= {"draw-to", 1 , &Pd::gr_drawto},=0A= {"move-to!", 1 , &Pd::gr_moveTo},=0A= =0A= {"draw", 1 , &Pd::gr_draw},=0A= {"move", 1 , &Pd::gr_move},=0A= =0A= {"set-dot!", 1 , &Pd::gr_setdot},=0A= {"valid-xyc?", 1 , &Pd::gr_validXYC},=0A= =0A= # 238 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "XMext/Ftab.h" 1=0A= =0A= =0A= {"ApCreateMainWindow", 1 , &Pd::ApCreateMainWindow },=0A= {"ApCreateMenuBar", 1 , &Pd::ApCreateMenuBar },=0A= {"ApCreatePulldownMenu", 1 , &Pd::ApCreatePulldownMenu },=0A= {"ApCreateCascadeButton", 1 , &Pd::ApCreateCascadeButton },=0A= {"ApCreatePushButtonGadget", 1 , = &Pd::ApCreatePushButtonGadget },=0A= {"ApCreateForm", 1 , &Pd::ApCreateForm },=0A= {"ApCreateDrawingArea", 1 , &Pd::ApCreateDrawingArea },=0A= {"ApAddXmCallback", 1 , &Pd::ApAddXmCallback },=0A= =0A= =0A= =0A= # 241 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "SVext/Ftab.h" 1=0A= =0A= =0A= {"ApTestImaging", 1 , &Pd::ApTestImaging },=0A= =0A= # 244 "ftab.cpp" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/Ftab.h" 1=0A= =0A= =0A= {"init-ray", 1 , &Pd::init_ray},=0A= {"setup-geometry", 1 , &Pd::setup_geometry},=0A= {"render-objects", 1 , &Pd::render_objects},=0A= {"make-pixels", 1 , &Pd::make_pixels},=0A= {"close-ray", 1 , &Pd::close_ray},=0A= =0A= {"make-3d", 1 , &Pd::make_3d},=0A= {"make-triangle", 1 , &Pd::make_triangle},=0A= {"make-patch", 1 , &Pd::make_patch},=0A= {"make-light", 1 , &Pd::make_light},=0A= {"make-surface", 1 , &Pd::make_surface},=0A= {"make-color", 1 , &Pd::make_color},=0A= =0A= {"vec-frame", 1 , &Pd::t_vec_frame},=0A= {"crossp", 1 , &Pd::t_crossp},=0A= {"norm-crossp", 1 , &Pd::t_norm_crossp},=0A= {"dotp", 1 , &Pd::t_dotp},=0A= {"normalize", 1 , &Pd::t_normalize},=0A= =0A= # 253 "ftab.cpp" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/Ftab.h" 1=0A= =0A= =0A= {"edit", 1 , &Pd::edit},=0A= {"re-edit", 1 , &Pd::re_edit},=0A= =0A= # 259 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "SYMext/Ftab.h" 1=0A= =0A= =0A= # 262 "ftab.cpp" 2=0A= =0A= =0A= =0A= =0A= {0 }=0A= =0A= };=0A= =0A= for (i =3D 0; ftab_tmp[i].f_fcn; i++) {=0A= ftab[i].f_name =3D ftab_tmp[i].f_name;=0A= ftab[i].f_type =3D ftab_tmp[i].f_type;=0A= ftab[i].f_fcn =3D ftab_tmp[i].f_fcn;=0A= }=0A= =0A= =0A= s_quote =3D (NODE *)0 ;=0A= s_function =3D (NODE *)0 ;=0A= s_bquote =3D (NODE *)0 ;=0A= s_comma =3D (NODE *)0 ;=0A= s_comat =3D (NODE *)0 ;=0A= s_evalhook =3D (NODE *)0 ;=0A= s_applyhook =3D (NODE *)0 ;=0A= s_lambda =3D (NODE *)0 ;=0A= s_macro =3D (NODE *)0 ;=0A= s_stdin =3D (NODE *)0 ;=0A= s_stdout =3D (NODE *)0 ;=0A= s_tracenable =3D (NODE *)0 ;=0A= s_tlimit =3D (NODE *)0 ;=0A= s_breakenable =3D (NODE *)0 ;=0A= s_continue =3D (NODE *)0 ;=0A= s_quit =3D (NODE *)0 ;=0A= s_car =3D (NODE *)0 ;=0A= s_cdr =3D (NODE *)0 ;=0A= s_get =3D (NODE *)0 ;=0A= s_svalue =3D (NODE *)0 ;=0A= s_splist =3D (NODE *)0 ;=0A= s_eql =3D (NODE *)0 ;=0A= k_test =3D (NODE *)0 ;=0A= k_tnot =3D (NODE *)0 ;=0A= k_optional =3D (NODE *)0 ;=0A= k_rest =3D (NODE *)0 ;=0A= k_aux =3D (NODE *)0 ;=0A= a_subr =3D (NODE *)0 ;=0A= a_fsubr =3D (NODE *)0 ;=0A= a_list =3D (NODE *)0 ;=0A= a_sym =3D (NODE *)0 ;=0A= a_int =3D (NODE *)0 ;=0A= a_str =3D (NODE *)0 ;=0A= a_obj =3D (NODE *)0 ;=0A= a_fptr =3D (NODE *)0 ;=0A= oblist =3D (NODE *)0 ;=0A= keylist =3D (NODE *)0 ;=0A= s_unbound =3D (NODE *)0 ;=0A= =0A= =0A= xlstack =3D (NODE *)0 ;=0A= xlenv =3D (NODE *)0 ;=0A= xlnewenv =3D (NODE *)0 ;=0A= =0A= =0A= xlcontext =3D 0 ; =0A= xlvalue =3D (NODE *)0 ; =0A= =0A= =0A= xldebug =3D 0; =0A= xltrace =3D -1; =0A= trace_stack =3D 0 ; =0A= =0A= =0A= strcpy(gsprefix, "G"); =0A= gsnumber =3D 1; =0A= =0A= =0A= xlplevel =3D 0; =0A= xlfsize =3D 0; =0A= prompt =3D 1 ; =0A= =0A= =0A= total =3D 0L; =0A= anodes =3D 0; =0A= nnodes =3D 0; =0A= nsegs =3D 0; =0A= nfree =3D 0; =0A= gccalls =3D 0; =0A= segs =3D 0 ; =0A= fnodes =3D (NODE *)0 ; =0A= =0A= =0A= self =3D (NODE *)0 ;=0A= Class =3D (NODE *)0 ;=0A= object =3D (NODE *)0 ;=0A= New =3D (NODE *)0 ;=0A= isnew =3D (NODE *)0 ;=0A= msgcls =3D (NODE *)0 ;=0A= msgclass =3D (NODE *)0 ;=0A= varcnt =3D 0;=0A= =0A= =0A= for (i =3D 0; i < 100 + 1; i++)=0A= buf[i] =3D 0;=0A= =0A= running =3D 0;=0A= switching =3D 0;=0A= x =3D 0;=0A= a_real=3D (NODE *)0 ;=0A= =0A= =0A= # 1 "MAText/InitialiseSymbols.h" 1=0A= =0A= =0A= a_matrix =3D (NODE *)0 ;=0A= a_picheader =3D (NODE *)0 ;=0A= a_piccolormap =3D (NODE *)0 ;=0A= a_picdata =3D (NODE *)0 ;=0A= =0A= # 369 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "NMRext/InitialiseSymbols.h" 1=0A= =0A= =0A= # 372 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "NEText/InitialiseSymbols.h" 1=0A= =0A= =0A= # 375 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "Xext/InitialiseSymbols.h" 1=0A= =0A= =0A= # 378 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "XText/InitialiseSymbols.h" 1=0A= =0A= =0A= =0A= # 381 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "XAWext/InitialiseSymbols.h" 1=0A= =0A= =0A= =0A= # 384 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "TGRext/InitialiseSymbols.h" 1=0A= =0A= =0A= =0A= # 387 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "XMext/InitialiseSymbols.h" 1=0A= =0A= =0A= =0A= # 390 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "SVext/InitialiseSymbols.h" 1=0A= =0A= =0A= # 393 "ftab.cpp" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "RAYext/InitialiseSymbols.h" 1=0A= =0A= =0A= objint[0] =3D &inttri;=0A= objint[1] =3D &intptch;=0A= =0A= objnrm[0] =3D &nrmtri;=0A= objnrm[1] =3D &nrmptch;=0A= =0A= # 402 "ftab.cpp" 2=0A= =0A= =0A= =0A= =0A= =0A= =0A= # 1 "VIext/InitialiseSymbols.h" 1=0A= =0A= =0A= =0A= # 408 "ftab.cpp" 2=0A= =0A= =0A= =0A= # 1 "SYMext/InitialiseSymbols.h" 1=0A= =0A= =0A= =0A= # 411 "ftab.cpp" 2=0A= =0A= =0A= =0A= }=0A= ------=_NextPart_000_0009_01C053BB.BAB3A8E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 8:49:22 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id C482437B4C5; Tue, 21 Nov 2000 08:49:18 -0800 (PST) Received: from FreeBSD.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id IAA50811; Tue, 21 Nov 2000 08:49:18 -0800 (PST) (envelope-from DougB@FreeBSD.org) Message-ID: <3A1AA78E.46AA5B7A@FreeBSD.org> Date: Tue, 21 Nov 2000 08:49:18 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: asmodai@FreeBSD.org Cc: bugs@FreeBSD.org Subject: Re: pending/22566: Re: ports/22517: New ports References: <200011211447.GAA22799@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org asmodai@FreeBSD.org wrote: > > Synopsis: Re: ports/22517: New ports > > State-Changed-From-To: open->closed > State-Changed-By: asmodai > State-Changed-When: Tue Nov 21 06:46:46 PST 2000 > State-Changed-Why: > Close it since the PR is edit-pr'able on freefall. > > Glitch in the Matrix probably. There is no spoon. -- So what I want to know is, where does the RED brick road go? Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 9:36:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD52237B4C5; Tue, 21 Nov 2000 09:36:23 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA54955; Tue, 21 Nov 2000 09:36:23 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Tue, 21 Nov 2000 09:36:23 -0800 (PST) From: Message-Id: <200011211736.JAA54955@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-bugs@FreeBSD.org, asmodai@FreeBSD.org Subject: Re: misc/22936: /usr/include/stdbool.h defines _bool twice when included by gcc. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/include/stdbool.h defines _bool twice when included by gcc. Responsible-Changed-From-To: freebsd-bugs->asmodai Responsible-Changed-By: sobomax Responsible-Changed-When: Tue Nov 21 09:35:32 PST 2000 Responsible-Changed-Why: Asmo brought it, so he'll fix it. http://www.freebsd.org/cgi/query-pr.cgi?pr=22936 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 10: 0:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8478137B4FE for ; Tue, 21 Nov 2000 10:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA59441; Tue, 21 Nov 2000 10:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from prioris.mini.pw.edu.pl (prioris.mini.pw.edu.pl [148.81.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 1900037B4C5 for ; Tue, 21 Nov 2000 09:50:08 -0800 (PST) Received: from pf39.warszawa.sdi.tpnet.pl (prioris.mini.pw.edu.pl [148.81.80.7]) by prioris.mini.pw.edu.pl (Postfix) with ESMTP id 0B4787D431 for ; Tue, 21 Nov 2000 18:50:02 +0100 (CET) Received: (from zaks@localhost) by pf39.warszawa.sdi.tpnet.pl (8.11.1/8.11.1) id eALHnAj02772; Tue, 21 Nov 2000 18:49:10 +0100 (CET) (envelope-from zaks) Message-Id: <200011211749.eALHnAj02772@pf39.warszawa.sdi.tpnet.pl> Date: Tue, 21 Nov 2000 18:49:10 +0100 (CET) From: zaks@prioris.mini.pw.edu.pl Reply-To: zaks@prioris.mini.pw.edu.pl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/23008: df -k reports incorrect amount of disk taken when BLOCKSIZE=K Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23008 >Category: bin >Synopsis: df -k reports incorrect amount of disk taken when BLOCKSIZE=K >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 21 10:00:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Slawek Zak >Release: FreeBSD 4.2-BETA i386 >Organization: Warsaw University of Technology >Environment: >Description: du with option -k and $BLOCKSIZE set to K reports half the amount of disk taken. >How-To-Repeat: $ unset BLOCKSIZE; du -sk /etc $ BLOCKSIZE=K du -sk /etc >Fix: Correct the -k option handling. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 10:10: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E718E37B4D7 for ; Tue, 21 Nov 2000 10:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA62608; Tue, 21 Nov 2000 10:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 74DAE37B4CF; Tue, 21 Nov 2000 10:02:31 -0800 (PST) Message-Id: <20001121180231.74DAE37B4CF@hub.freebsd.org> Date: Tue, 21 Nov 2000 10:02:31 -0800 (PST) From: term@rmci.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/23010: Kernel panic, signal 12 page fault while using 4.1.1 bridging+ipfw bandwidth limiting Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23010 >Category: kern >Synopsis: Kernel panic, signal 12 page fault while using 4.1.1 bridging+ipfw bandwidth limiting >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 21 10:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: term >Release: 4.1.1-RELEASE >Organization: RMCI >Environment: [firewall:~]$ uname -a FreeBSD firewall.spo.velocitus.com 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Tue Nov 21 10:29:02 GMT 2000 root@firewall.spo:/usr/src/sys/compile/FIREWALL i386 [firewall:~]$ >Description: After executing the following firewall ruleset the system gets a kernel panic. ipfw -f flush ipfw -f pipe flush ipfw add 1 pipe 1 ip from 192.168.0.0:255.255.255.0 to 0.0.0.0/0 ipfw add 1 pipe 1 ip from 0.0.0.0/0 to 192.168.0.0:255.255.255.0 ipfw pipe 1 config bw 204Kbit/s >How-To-Repeat: Execute the above rule set with bridging+ipfw+dummynet enabled on FreeBSD 4.1.1 and start to transfer data acrost the bridge >Fix: I know this doesn't happen on 4.0-R. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 10:23: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from spammie.svbug.com (mg128-177.ricochet.net [204.179.128.177]) by hub.freebsd.org (Postfix) with ESMTP id 6C69F37B4C5; Tue, 21 Nov 2000 10:23:04 -0800 (PST) Received: from spammie.svbug.com (localhost.mozie.org [127.0.0.1]) by spammie.svbug.com (8.9.3/8.9.3) with ESMTP id KAA00275; Tue, 21 Nov 2000 10:22:12 -0800 (PST) (envelope-from jessem@spammie.svbug.com) Message-Id: <200011211822.KAA00275@spammie.svbug.com> Date: Tue, 21 Nov 2000 10:22:09 -0800 (PST) From: opentrax@email.com Reply-To: opentrax@email.com Subject: Re: bin/22954: cron isn't daylight savings-aware To: DougB@FreeBSD.ORG Cc: seraf@2600.com, freebsd-bugs@FreeBSD.ORG In-Reply-To: <3A185A50.29C5CFC3@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 19 Nov, Doug Barton wrote: > "H. ICHIKAWA" wrote: >> >> Your tell me not to schedule cron jobs during that time period, >> when the stock FreeBSD root crontab violates this principle. hmm.. > > Your PR actually reminded me to commit a change to /etc/crontab to > avoid just this issue, although presently it runs daily twice in the > fall, and once in the spring which is better than once in the fall and > never in spring (for regions that do the DST change at 2am anyway). > Doug, could you be so kind as to post the patch to bugs, or perhaps make it available via ftp or http? So some of us could make the fixes on older systems. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 10:30:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from ringworld.nanolink.com (pool34-tch-1.Sofia.0rbitel.net [212.95.170.34]) by hub.freebsd.org (Postfix) with SMTP id 259E737B4D7 for ; Tue, 21 Nov 2000 10:30:24 -0800 (PST) Received: (qmail 33060 invoked by uid 1000); 21 Nov 2000 18:30:00 -0000 Date: Tue, 21 Nov 2000 20:30:00 +0200 From: Peter Pentchev To: opentrax@email.com Cc: DougB@FreeBSD.ORG, seraf@2600.com, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/22954: cron isn't daylight savings-aware Message-ID: <20001121203000.E9661@ringworld.oblivion.bg> Mail-Followup-To: opentrax@email.com, DougB@FreeBSD.ORG, seraf@2600.com, freebsd-bugs@FreeBSD.ORG References: <3A185A50.29C5CFC3@FreeBSD.org> <200011211822.KAA00275@spammie.svbug.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011211822.KAA00275@spammie.svbug.com>; from opentrax@email.com on Tue, Nov 21, 2000 at 10:22:09AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 21, 2000 at 10:22:09AM -0800, opentrax@email.com wrote: > > > On 19 Nov, Doug Barton wrote: > > "H. ICHIKAWA" wrote: > >> > >> Your tell me not to schedule cron jobs during that time period, > >> when the stock FreeBSD root crontab violates this principle. hmm.. > > > > Your PR actually reminded me to commit a change to /etc/crontab to > > avoid just this issue, although presently it runs daily twice in the > > fall, and once in the spring which is better than once in the fall and > > never in spring (for regions that do the DST change at 2am anyway). > > > Doug, > could you be so kind as to post the patch to bugs, or perhaps > make it available via ftp or http? So some of us could make > the fixes on older systems. In theory, you could get it from http://www.freebsd.org/cgi/cvsweb.cgi/ In this particular case, cvsweb is all you need ;) G'luck, Peter -- If this sentence were in Chinese, it would say something else. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 11: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E283237B4D7 for ; Tue, 21 Nov 2000 11:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA69095; Tue, 21 Nov 2000 11:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 556DC37B4D7; Tue, 21 Nov 2000 10:56:22 -0800 (PST) Message-Id: <20001121185622.556DC37B4D7@hub.freebsd.org> Date: Tue, 21 Nov 2000 10:56:22 -0800 (PST) From: tigner@msu.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/23011: UDMA 66 not working on 4.1.1-Release ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23011 >Category: kern >Synopsis: UDMA 66 not working on 4.1.1-Release ? >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 21 11:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Barry Tigner >Release: FreeBSD 4.1.1 Release >Organization: Michigan State University >Environment: > uname -a FreeBSD Speedy.home 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Fri Nov 17 18:46:49 EST 2000 root@Speedy.home:/usr/src/sys/compile/SPEEDY i386 > >Description: dmesg reports HD is running at ata33, cdrom at PIO4. Both work ok in Win98, checked bios settings , recompiled kernel with ata dma enabled, still get the same message. I AM using an 80 wire ata66 cable on ATA0 and a 40 wire ata33 cable on ATA1. I've tried replacing the cables with new ones even though it appears to work ok in windows, and still get the same message. dmesg excerpt follows here. > dmesg |grep ata atapci0: port 0xd000-0xd00f,0xd400-0xd403,0xd800-0xd807,0xe000-0xe003,0xe400-0xe407 irq 14 at device 0.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ata0-master: DMA limited to UDMA33, non-ATA66 compliant cable ad0: 19531MB [39683/16/63] at ata0-master using UDMA33 acd0: CDROM at ata1-master using PIO4 afd0: 120MB [963/8/32] at ata1-slave using PIO2 Mainboard=Asus p5A-B, Ali chipset, builtin snd,agp2x , shared mem for vga CPU=AMD K6-2 3DNow/400mhz. MEM=64MB PC100 SDRAM HD=Maxtor 7200rpm 2MB cache ata66 20GB ATA0-master CDrom=56x ATA33 MagicSpin ATA1-master nofloppy LS-120 superfloppy = ATA1-slave >How-To-Repeat: it repeats all the time. >Fix: no clue at all. I have enabled ata dma in the kernel and recompiled. I've tried recompiling with optimizations on, still same problem. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 13:34:59 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from spammie.svbug.com (mg128-177.ricochet.net [204.179.128.177]) by hub.freebsd.org (Postfix) with ESMTP id 8A31937B4CF for ; Tue, 21 Nov 2000 13:34:54 -0800 (PST) Received: from spammie.svbug.com (localhost.mozie.org [127.0.0.1]) by spammie.svbug.com (8.9.3/8.9.3) with ESMTP id NAA00476; Tue, 21 Nov 2000 13:34:03 -0800 (PST) (envelope-from jessem@spammie.svbug.com) Message-Id: <200011212134.NAA00476@spammie.svbug.com> Date: Tue, 21 Nov 2000 13:34:02 -0800 (PST) From: opentrax@email.com Reply-To: opentrax@email.com Subject: Re: misc/22980: Strange behaviour in domain name resolution!! To: andre.albsmeier@mchp.siemens.de Cc: freebsd-bugs@FreeBSD.ORG In-Reply-To: <200011210650.WAA42253@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 20 Nov, Andre Albsmeier wrote: > The following reply was made to PR misc/22980; it has been noted by GNATS. > > From: Andre Albsmeier > To: Marco Pizzi > Cc: Andre Albsmeier , > m.pizzi@net-one.it, freebsd-gnats-submit@FreeBSD.ORG > Subject: Re: misc/22980: Strange behaviour in domain name resolution!! > Date: Tue, 21 Nov 2000 07:44:47 +0100 > > On Mon, 20-Nov-2000 at 23:07:44 +0100, Marco Pizzi wrote: > > At 22.00 20/11/00 +0100, Andre Albsmeier wrote: > > >On Mon, 20-Nov-2000 at 09:28:53 -0800, m.pizzi@net-one.it wrote: > > > > > > > > -- > > > > parigi# nslookup nw_milano.bgsdarcy.it > > > > Server: ginevra.net-one.it > > > > Address: 212.177.116.30 > > > > > > > > Non-authoritative answer: > > > > Name: nw_milano.bgsdarcy.it > > > > Address: 193.70.120.194 > > > > -- > > > > Now, look at this: > > > > --- > > > > parigi# telnet nw_milano.bgsdarcy.it 25 > > > > nw_milano.bgsdarcy.it: Non-recoverable failure in name resolution > > > > > >Maybe removing the illegal underscore might help. You could use > > >a '-' instead of the '_'. > > > > But THAT is the real name of the server. > > Well, I didn't doubt that it is the real name. But the > name is illegal since it contains an underscore. I don't > know if this causes the problem. > > > That is not my server. > > Also, the name resolution doesn't fail on a Linux or a Solaris machine! > > That doesn't mean they are correct. > Yes, there is an RFC for this also. Does anyone remember the RFC off hand and where to get it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Nov 21 13:48:52 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.13]) by hub.freebsd.org (Postfix) with SMTP id 5D59F37B4C5 for ; Tue, 21 Nov 2000 13:48:48 -0800 (PST) Received: (qmail 2894 invoked by uid 1000); 21 Nov 2000 21:48:23 -0000 Date: Tue, 21 Nov 2000 23:48:22 +0200 From: Peter Pentchev To: opentrax@email.com Cc: andre.albsmeier@mchp.siemens.de, freebsd-bugs@FreeBSD.ORG Subject: Re: misc/22980: Strange behaviour in domain name resolution!! Message-ID: <20001121234822.A467@ringworld.oblivion.bg> Mail-Followup-To: opentrax@email.com, andre.albsmeier@mchp.siemens.de, freebsd-bugs@FreeBSD.ORG References: <200011210650.WAA42253@freefall.freebsd.org> <200011212134.NAA00476@spammie.svbug.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200011212134.NAA00476@spammie.svbug.com>; from opentrax@email.com on Tue, Nov 21, 2000 at 01:34:02PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 21, 2000 at 01:34:02PM -0800, opentrax@email.com wrote: [snip] > > > >Maybe removing the illegal underscore might help. You could use > > > >a '-' instead of the '_'. > > > > > > But THAT is the real name of the server. > > > > Well, I didn't doubt that it is the real name. But the > > name is illegal since it contains an underscore. I don't > > know if this causes the problem. > > > > > That is not my server. > > > Also, the name resolution doesn't fail on a Linux or a Solaris machine! > > > > That doesn't mean they are correct. > > > Yes, there is an RFC for this also. > Does anyone remember the RFC off hand and where to get it? Tried looking? A search for 'domain name' in the RFC index of www.faqs.org turned up RFC 883 pretty quickly.. and there: Appendix 1 - Domain Name Syntax Specification The preferred syntax of domain names is given by the following BNF rules. Adherence to this syntax will result in fewer problems with many applications that use domain names (e.g., mail, TELNET). Note that some applications use domain names containing binary information and hence do not follow this syntax. ::= | " " ::=