CVS commit: src/usr.bin/tic

2024-05-20 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon May 20 14:41:37 UTC 2024 Modified Files: src/usr.bin/tic: tic.c Log Message: PR/58270: RVP: tic does not honor the user's umask, output files are 0666. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/usr.

CVS commit: src/usr.bin/tic

2024-05-20 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon May 20 14:41:37 UTC 2024 Modified Files: src/usr.bin/tic: tic.c Log Message: PR/58270: RVP: tic does not honor the user's umask, output files are 0666. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/usr.

CVS commit: src/usr.bin/tic

2024-05-11 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat May 11 22:06:57 UTC 2024 Modified Files: src/usr.bin/tic: tic.c Log Message: Only mark the terminfo entry promoted if actually was. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/usr.bin/tic/tic.c Pleas

CVS commit: src/usr.bin/tic

2024-05-11 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat May 11 22:06:57 UTC 2024 Modified Files: src/usr.bin/tic: tic.c Log Message: Only mark the terminfo entry promoted if actually was. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/usr.bin/tic/tic.c Pleas

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Roy Marples
On 05/05/2017 14:51, Martin Husemann wrote: > On Fri, May 05, 2017 at 02:20:46PM +0100, Roy Marples wrote: >> Debugging memory use is always important. >> I'll move it to a separate function for clarity, but was hoping a better >> guard name than __VALGRIND__ could be used. >> >> Maybe __DEBUG_MEMO

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Roy Marples
On 05/05/2017 14:51, Martin Husemann wrote: > On Fri, May 05, 2017 at 02:20:46PM +0100, Roy Marples wrote: >> Debugging memory use is always important. >> I'll move it to a separate function for clarity, but was hoping a better >> guard name than __VALGRIND__ could be used. >> >> Maybe __DEBUG_MEMO

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Martin Husemann
On Fri, May 05, 2017 at 02:20:46PM +0100, Roy Marples wrote: > Debugging memory use is always important. > I'll move it to a separate function for clarity, but was hoping a better > guard name than __VALGRIND__ could be used. > > Maybe __DEBUG_MEMORY__ or __FREE_RESOURCES__? The point was that we

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Roy Marples
On 05/05/2017 12:56, Robert Elz wrote: > Date:Fri, 5 May 2017 11:49:28 +0100 > From:Roy Marples > Message-ID: > > | In this case, exit() isn't called, the main function returns. > > Same thing, return from main is defined as implicitly calling exit. > > | In th

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Robert Elz
Date:Fri, 5 May 2017 11:49:28 +0100 From:Roy Marples Message-ID: | In this case, exit() isn't called, the main function returns. Same thing, return from main is defined as implicitly calling exit. | In the RTEMS case, everything runs in one process and a thread

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Roy Marples
On 05/05/2017 10:59, Robert Elz wrote: > Date:Fri, 5 May 2017 09:07:14 +0100 > From:Roy Marples > Message-ID: > > | As we know, parts of NetBSD code are used outside of NetBSD. > > Of course, and if there are any of those for which calling exit() does > not free a

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Robert Elz
Date:Fri, 5 May 2017 09:07:14 +0100 From:Roy Marples Message-ID: | As we know, parts of NetBSD code are used outside of NetBSD. Of course, and if there are any of those for which calling exit() does not free all resources that have been allocated by the program, t

Re: CVS commit: src/usr.bin/tic

2017-05-05 Thread Roy Marples
On 04/05/2017 23:51, Robert Elz wrote: > Date:Thu, 4 May 2017 14:07:33 + > From:"Roy Marples" > Message-ID: <20170504140733.b327df...@cvs.netbsd.org> > > | Module Name: src > | Committed By: roy > | Date: Thu May 4 14:07:33 UTC 2017 >

Re: CVS commit: src/usr.bin/tic

2017-05-04 Thread Robert Elz
Date:Thu, 4 May 2017 14:07:33 + From:"Roy Marples" Message-ID: <20170504140733.b327df...@cvs.netbsd.org> | Module Name:src | Committed By: roy | Date: Thu May 4 14:07:33 UTC 2017 | | Modified Files: | src/usr.bin/tic:

CVS commit: src/usr.bin/tic

2010-02-19 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sat Feb 20 06:20:46 UTC 2010 Modified Files: src/usr.bin/tic: tic.c Log Message: One more time - do this correctly. Thanks, joerg. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/usr.bin/tic/tic.c Please note

CVS commit: src/usr.bin/tic

2010-02-19 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sat Feb 20 06:15:06 UTC 2010 Modified Files: src/usr.bin/tic: tic.c Log Message: Wrap the include of sys/endian.h in #ifdef HAVE_SYS_ENDIAN_H to avoid build issues on systems that don't have a sys/endian.h Pointed out by joerg@

CVS commit: src/usr.bin/tic

2010-02-19 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sat Feb 20 06:08:01 UTC 2010 Modified Files: src/usr.bin/tic: tic.c Log Message: Since tic is a host tool, we need to include host system header to get definitions of le16dec() and le16enc(). Solves PR bin/42747 from Henning Pe

CVS commit: src/usr.bin/tic

2010-02-11 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Thu Feb 11 13:44:14 UTC 2010 Modified Files: src/usr.bin/tic: tic.1 Log Message: Oxford serial comma. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/usr.bin/tic/tic.1 Please note that diffs are not public domain;

CVS commit: src/usr.bin/tic

2010-02-11 Thread Roy Marples
Module Name:src Committed By: roy Date: Thu Feb 11 13:09:57 UTC 2010 Modified Files: src/usr.bin/tic: tic.1 tic.c Log Message: Change -S to output C structures to make life easier. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/usr.bin/tic/tic.1 cvs rdif

CVS commit: src/usr.bin/tic

2010-02-10 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Thu Feb 11 07:00:46 UTC 2010 Modified Files: src/usr.bin/tic: tic.1 Log Message: Sort options (standard order is 0-9AaBbCc...). To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.bin/tic/tic.1 Please note that dif

CVS commit: src/usr.bin/tic

2010-02-10 Thread Roy Marples
Module Name:src Committed By: roy Date: Thu Feb 11 00:24:46 UTC 2010 Modified Files: src/usr.bin/tic: tic.1 tic.c Log Message: tic -S now outputs the specified terminal names and compiled descriptions as C strings so we can embed them into libterminfo. To generate a diff

CVS commit: src/usr.bin/tic

2010-02-05 Thread Roy Marples
Module Name:src Committed By: roy Date: Fri Feb 5 16:54:12 UTC 2010 Modified Files: src/usr.bin/tic: tic.1 Log Message: Fix year. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/usr.bin/tic/tic.1 Please note that diffs are not public domain; they are su

CVS commit: src/usr.bin/tic

2010-02-05 Thread Roy Marples
Module Name:src Committed By: roy Date: Fri Feb 5 16:36:09 UTC 2010 Modified Files: src/usr.bin/tic: tic.1 tic.c Log Message: Note that -a no longer sets -x. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/usr.bin/tic/tic.1 cvs rdiff -u -r1.3 -r1.4 src/u

CVS commit: src/usr.bin/tic

2010-02-05 Thread Havard Eidnes
Module Name:src Committed By: he Date: Fri Feb 5 14:40:07 UTC 2010 Modified Files: src/usr.bin/tic: tic.c Log Message: More adaptation for ports where char is unsigned char. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/usr.bin/tic/tic.c Please note t

CVS commit: src/usr.bin/tic

2010-02-03 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Wed Feb 3 15:51:09 UTC 2010 Modified Files: src/usr.bin/tic: tic.1 Log Message: Use Ex for EXIT STATUS section. Put Ns on same line as previous, to make clearer what happens. To generate a diff of this commit: cvs rdiff -u -r1.1 -