GSoC 2026: Introduction and hello world task Proof

Hello RTEMS Community:
My name is Xinhong Hu, a second-year undergraduate student. I am interested in computer systems and am applying for the Google Summer of Code (GSoC) with RTEMS to gain practical experience in system work. Currently, I am interested in the following two issues: Tests for CLOCK_MONOTONIC (issue #3889)​ and Message Queue Improvements and Fixes (issue #88).
I would be grateful for any feedback or guidance from the community.

Next are my proof:

patch (Note: new users cannot upload files, so I’ve pasted the content below and included a screenshot of it):

code blocks:

From bf4d34d960aa58b39789b18bc228fea9a926276c Mon Sep 17 00:00:00 2001 From: Xinhong Hu tp5092@foxmail.com Date: Thu, 29 Jan 2026 01:35:57 +0800 Subject: [PATCH] finished change in $HOME/quick-start/src/rtems/testsuites/samples/hello/init.c. change print “hello world” to “Hello from The Dark Side!” — testsuites/samples/hello/init.c | 2 ± 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c index c9f07118c5…510c859e34 100644 — a/testsuites/samples/hello/init.c +++ b/testsuites/samples/hello/init.c @@ -43,7 +43,7 @@ static rtems_task Init( rtems_print_printer_fprintf_putc(&rtems_test_printer);

TEST_BEGIN();

  • printf( “Hello World\n” );
  • printf( “Hello from The Dark Side!\n” );
    TEST_END();
    rtems_test_exit( 0 );
    } –
    2.43.0

patch screenshot:

build success screenshot:

Can you provide a screenshot showing the program running?

After that you can add yourself to tracking/2026 · main · RTEMS / Programs / Google Summer of Code · GitLab

Sure, thank you. The program runs successfully and outputs “Hello from The Dark Side!”. I will now proceed to add myself to the tracking/2026 page.Next is my screenshot:

1 Like