Re: [PATCH] cpukit: pppd: fix compile warning

2016-04-12 Thread Peng Fan
Hi, On Tue, Apr 05, 2016 at 10:23:00AM -0400, Gedare Bloom wrote: >This should be fine. I don't know, does pppd have an active maintainer? Just kindly ping, will this be merged? > >On Tue, Apr 5, 2016 at 8:45 AM, Peng Fan wrote: >> rcsid is defined, but not used. So discard it. >> >> Signed-off

[examples-v2 V2] fat_ramdisk: define POSIX keys number

2016-04-12 Thread Peng Fan
define POSIX KEYS and PAIRS to 16, otherwise met: " pthread_setspecific(shell_current_env_key) " --- V2: Addressed Gedare's comments: Discard signed off filesystem/fat_ramdisk/init.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/filesystem/fat_ramdisk/init.c b/filesystem/fat_ramdisk/in

Re: source builder bug: zlib1g-dev and python-dev is needed but not checked

2016-04-12 Thread Chris Johns
On 13/04/2016 00:30, Du Huanpeng wrote: Hi, without these two packages, the build will failed. the source builder don't check these. Correct. The upcoming User Manual I am working talks about this ... https://ftp.rtems.org/pub/rtems/people/chrisj/docs/user/start/index.html#posix-hosts The RSB

Re: [PATCH] posix: Rename killinfo()

2016-04-12 Thread Gedare Bloom
Joel, any idea where killinfo came from? On Tue, Apr 12, 2016 at 2:02 AM, Sebastian Huber wrote: > Apparently killinfo() is not defined by POSIX, glibc or FreeBSD. Rename > killinfo() to _POSIX_signals_Send() to cleary mark it as an internal > function. > --- > cpukit/posix/include/rtems/posix/

source builder bug: zlib1g-dev and python-dev is needed but not checked

2016-04-12 Thread Du Huanpeng
Hi, without these two packages, the build will failed. the source builder don't check these. ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: source builder bug: zlib1g-dev and python-dev is needed but not checked

2016-04-12 Thread Du Huanpeng
On Tue, Apr 12, 2016 at 02:09:18PM +, devel-ow...@rtems.org wrote: > To reduce spam only list members may post to this list. If you think > that your messages are being rejected in error please contact > devel-ow...@rtems.org. > > Date: Tue, 12 Apr 2016 22:08:55 +0800 > From: Du Huanpeng > T

Re: [PATCH] posix: Rename killinfo()

2016-04-12 Thread Joel Sherrill
On Apr 12, 2016 8:09 AM, "Gedare Bloom" wrote: > > Joel, any idea where killinfo came from? I was wondering the same thing this morning. I have old POSIX specs on paper at the office but if it isn't around now, killing it isn't a bad idea. I can't find any reference to it now either. > On Tue,

Re: [PATCH] including string.h is not needed

2016-04-12 Thread Zhu Zhongjie
On Friday, March 25, 2016 9:50 PM, Joel Sherrill wrote: I was going to commit this but no longer have the original patch in my mailbox. It looks screwed up in the mail archives. If either of you send it to me, I will commit it. --joel On Fri, Mar 25, 2016 at 8:25 AM, Gedare Bloom wrot

[PATCH 2/2] Add BSD guards for off_t, dev_t, uid_t, and gid_t

2016-04-12 Thread Sebastian Huber
Copy definitions of off_t, dev_t, uid_t, and gid_t verbatim from latest FreeBSD . Signed-off-by: Sebastian Huber --- newlib/libc/include/sys/types.h | 20 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/newlib/libc/include/sys/types.h b/newlib/libc/include/sys

[PATCH 1/2] Eliminate use of Newlib-specific

2016-04-12 Thread Sebastian Huber
This change solves a glibc/BSD compatibility problem. glibc and BSD use double underscore types for internal types. The Linux port of Newlib uses some glibc provided internal type definitions which are not protected by guard defines, e.g. __off_t. To avoid a conflict Newlib uses single underscor