Re: [civetweb] Interface for setting stack size and scheduler options

2016-05-22 Thread Christian Mauderer
To the question from Joe Mucchiello: I think the thread startup is more a toppic of the init_thread callback that has been added here: https://github.com/civetweb/civetweb/pull/304 This function gets called after the thread is started. Is this what you had in mind? To bel: I created a d

contributing in open source

2016-05-22 Thread Kefeh Collins
hello i am a second year student in computer science, program in c, c++ language and am interested in contributing in operating system (kernel) directed projects please i need some guidance thanks in advance ___ devel mailing list devel@rtems.org http:/

Re: contributing in open source

2016-05-22 Thread Gedare Bloom
Hello Kefeh Collins, The best place to get started with RTEMS is to go through the guide we have prospective Google Summer of Code students follow: https://devel.rtems.org/wiki/GSoC/GettingStarted Ask questions as you get stuck or curious, and peruse the wiki from the above link too. Some other d

Master Doesn't Build with --enable-multiprocessing

2016-05-22 Thread Joel Sherrill
Hi The master doesn't build for sparc/leon3 when multiprocessing is enabled. Based upon the error, there is likely user guidance needed in the manual. For other methods removed, guidance on updating code has been added. I didn't look to check in this case. sparc-rtems4.12-gcc -B../../../../../../

[PATCH] Delete autotools probe for and all references to feature macro

2016-05-22 Thread Joel Sherrill
This was a transitional feature macro and recent tool verions always have this header file. Remove as it is now obsolete. --- cpukit/configure.ac |7 -- cpukit/posix/include/rtems/posix/pthreadimpl.h |2 +- cpukit/posix/src/pthread.c |

Re: GSOC'16 project update - RTEMS LwIP integration

2016-05-22 Thread Pavel Pisa
Hello Sai Charan Sane, I have been busy with RTEMS on RPi till now. But generally all materials listed in your e-mail worth to be read. You should read for sure Beej's Guide to Network Programming http://beej.us/guide/bgnet/output/html/singlepage/bgnet.html It is practical description and cookb

Remove RTEMS version of getcwd and ttyname?

2016-05-22 Thread Joel Sherrill
Hi In looking at autotools probes, I have realized our newlib libc.a has ttyname, ttyname_r, and getcwd. RTEMS also has this code but it should be being disabled because it is in newlib and we are using that version. Does anyone see any issue with removing the copy in RTEMS? --joel

Re: Master Doesn't Build with --enable-multiprocessing

2016-05-22 Thread Chris Johns
On 23/05/2016 08:35, Joel Sherrill wrote: The master doesn't build for sparc/leon3 when multiprocessing is enabled. Based upon the error, there is likely user guidance needed in the manual. For other methods removed, guidance on updating code has been added. I didn't look to check in this case.

Re: Master Doesn't Build with --enable-multiprocessing

2016-05-22 Thread Sebastian Huber
On 23/05/16 00:35, Joel Sherrill wrote: Hi The master doesn't build for sparc/leon3 when multiprocessing is enabled. It builds if you use --enable-multiprocessing without --enable-smp. Based upon the error, there is likely user guidance needed in the manual. For other methods removed, guid

Re: Master Doesn't Build with --enable-multiprocessing

2016-05-22 Thread Sebastian Huber
On 23/05/16 05:16, Chris Johns wrote: On 23/05/2016 08:35, Joel Sherrill wrote: The master doesn't build for sparc/leon3 when multiprocessing is enabled. Based upon the error, there is likely user guidance needed in the manual. For other methods removed, guidance on updating code has been add

[PATCH 7/9] libmisc: Fix printk format warnings.

2016-05-22 Thread Chris Johns
--- cpukit/libmisc/mouse/serial_mouse.c | 2 +- cpukit/libmisc/stackchk/check.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpukit/libmisc/mouse/serial_mouse.c b/cpukit/libmisc/mouse/serial_mouse.c index 38f5376..eb993b4 100644 --- a/cpukit/libmisc/mouse/serial_mo

Add rtems_printf intreface.

2016-05-22 Thread Chris Johns
These changes wrap the RTEMS print plugin API with rtems_printf and the rtems_printer. The change also fixes the printf and printk use in the testsuite so it is handled in a more uniform way. There is more that should be done here. The printk how generates warnings if the format string is wrong

[PATCH 8/9] testsuite: Fix printk formating warning.

2016-05-22 Thread Chris Johns
--- testsuites/support/include/tmacros.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h index e35ef33..d8aec2a 100644 --- a/testsuites/support/include/tmacros.h +++ b/testsuites/support/include/

[PATCH 1/9] cpukit, testsuite: Add rtems_printf and rtems_printer support.

2016-05-22 Thread Chris Johns
This change adds rtems_printf and related functions and wraps the RTEMS print plugin support into a user API. All references to the plugin are removed and replaced with the rtems_printer interface. Printk and related functions are made to return a valid number of characters formatted and output.

[PATCH 5/9] libcsupport: Fix printk warnings.

2016-05-22 Thread Chris Johns
--- cpukit/libcsupport/src/free.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpukit/libcsupport/src/free.c b/cpukit/libcsupport/src/free.c index f3d4cb8..9020958 100644 --- a/cpukit/libcsupport/src/free.c +++ b/cpukit/libcsupport/src/free.c @@ -40,8 +40,8 @@ void free(

[PATCH 6/9] score/i386: Fix printk format warnings.

2016-05-22 Thread Chris Johns
--- cpukit/score/cpu/i386/cpu.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/cpukit/score/cpu/i386/cpu.c b/cpukit/score/cpu/i386/cpu.c index f0bbad4..d839f1e 100644 --- a/cpukit/score/cpu/i386/cpu.c +++ b/cpukit/score/cpu/i386/cpu.c @@ -17,6 +17,8 @@ #include "

[PATCH 3/9] libfs/jff2: Avoid printk format warnings.

2016-05-22 Thread Chris Johns
This change does not fix the printk format warnings rather it ignores them. --- cpukit/libfs/src/jffs2/include/linux/kernel-rtems.h | 21 + cpukit/libfs/src/jffs2/include/linux/kernel.h | 5 - cpukit/libfs/src/jffs2/src/dir-rtems.c | 19 +

[PATCH 9/9] testsuite: Fix printk format warnings.

2016-05-22 Thread Chris Johns
--- testsuites/libtests/block08/bdbuf_test1_1.c | 13 testsuites/libtests/block08/bdbuf_test1_2.c | 9 +++--- testsuites/libtests/block08/bdbuf_test1_3.c | 9 +++--- testsuites/libtests/block08/bdbuf_test1_4.c | 20 ++--- testsuites/libtests/block08/bdbuf_test1_5.c | 11 ---

[PATCH 4/9] bsp/shared: Fix printk warnings.

2016-05-22 Thread Chris Johns
--- c/src/lib/libbsp/shared/src/irq-default-handler.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/c/src/lib/libbsp/shared/src/irq-default-handler.c b/c/src/lib/libbsp/shared/src/irq-default-handler.c index fd0175f..f1d1e38 100644 --- a/c/src/lib/libbsp/shared/src/irq

[PATCH 2/9] i386/pc386: Fix printk formatting warnings.

2016-05-22 Thread Chris Johns
--- c/src/lib/libbsp/i386/pc386/console/console_control.c | 2 +- c/src/lib/libbsp/i386/pc386/console/exar17d15x.c | 2 +- c/src/lib/libbsp/i386/pc386/console/fb_vesa_rm.c | 12 +++- c/src/lib/libbsp/i386/pc386/console/inch.c| 2 ++ c/src/lib/libbsp/i386/pc386/cons