Re: [PATCH v3] updates #3889, Added test for timer_create() using CLOCK_MONOTONIC

2020-06-06 Thread Joel Sherrill
Thanks for the patch. Sorry this slipped through for so long without such simple feedback. First, there is a ticket for this: https://devel.rtems.org/ticket/3889 which should be referenced. Second, although the ticket just mentions timer_create, the capabilities (e.g. user use case) not

Re: [PATCH v3] updates #3889, Added test for timer_create() using CLOCK_MONOTONIC

2020-04-28 Thread Eshan Dhawan
Hello everyone, I sent this patch to add test for POSIX timer_create for clock_id argument as CLOCK_MONOTONIC. Other details are in the commit message. If you all could review it. thanks -Eshan On Mon, Apr 20, 2020 at 12:00 AM Eshan dhawan wrote: > >I will create a timer using timer_create()

[PATCH v3] updates #3889, Added test for timer_create() using CLOCK_MONOTONIC

2020-04-19 Thread Eshan dhawan
>I will create a timer using timer_create() function, and passing CLOCK_MONOTONIC in clock_id argument. >The test will fail as there is no support for CLOCK_MONOTONIC in cpukit/posix/src/psxtimercreate.c. >The added code compiles successfully without any errors. Signed-off-by: Eshan dhawan ---