forked from Imagelibrary/rtems
323 lines
7.8 KiB
C
323 lines
7.8 KiB
C
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
/*
|
|
* COPYRIGHT (c) 1989-2009.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* Copyright (c) 2016 embedded brains GmbH & Co. KG
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <tmacros.h>
|
|
|
|
#include <rtems.h>
|
|
|
|
#include <rtems/score/threadimpl.h>
|
|
|
|
#include <fcntl.h>
|
|
#include <mqueue.h>
|
|
#include <semaphore.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
|
|
const char rtems_test_name[] = "SPTHREADQ 1";
|
|
|
|
static Thread_queue_Control queue = THREAD_QUEUE_INITIALIZER( "Queue" );
|
|
|
|
typedef struct {
|
|
Thread_Control *master;
|
|
rtems_id master_id;
|
|
rtems_id worker_id;
|
|
rtems_id sem;
|
|
rtems_id mtx;
|
|
rtems_id mq;
|
|
rtems_id br;
|
|
mqd_t pmq;
|
|
} test_context;
|
|
|
|
static test_context test_instance;
|
|
|
|
static void wait_for_worker(test_context *ctx)
|
|
{
|
|
rtems_status_code sc;
|
|
|
|
sc = rtems_event_transient_receive(RTEMS_WAIT, RTEMS_NO_TIMEOUT);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
}
|
|
|
|
static void wake_up_master(test_context *ctx)
|
|
{
|
|
rtems_status_code sc;
|
|
|
|
sc = rtems_event_transient_send(ctx->master_id);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
}
|
|
|
|
static rtems_id get_wait_id(test_context *ctx)
|
|
{
|
|
Thread_queue_Context queue_context;
|
|
rtems_id id;
|
|
|
|
_Thread_queue_Context_initialize(&queue_context);
|
|
_Thread_Wait_acquire(ctx->master, &queue_context);
|
|
id = _Thread_Wait_get_id(ctx->master);
|
|
_Thread_Wait_release(ctx->master, &queue_context);
|
|
|
|
return id;
|
|
}
|
|
|
|
static void classic_worker(test_context *ctx)
|
|
{
|
|
rtems_status_code sc;
|
|
char buf[1];
|
|
|
|
wake_up_master(ctx);
|
|
rtems_test_assert(get_wait_id(ctx) == ctx->sem);
|
|
|
|
sc = rtems_semaphore_release(ctx->sem);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_semaphore_obtain(ctx->mtx, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
wake_up_master(ctx);
|
|
rtems_test_assert(get_wait_id(ctx) == ctx->mtx);
|
|
|
|
sc = rtems_semaphore_release(ctx->mtx);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
wake_up_master(ctx);
|
|
rtems_test_assert(get_wait_id(ctx) == ctx->mq);
|
|
|
|
buf[0] = 'X';
|
|
sc = rtems_message_queue_send(ctx->mq, &buf[0], sizeof(buf));
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
wake_up_master(ctx);
|
|
rtems_test_assert(get_wait_id(ctx) == ctx->br);
|
|
|
|
sc = rtems_barrier_wait(ctx->br, RTEMS_NO_TIMEOUT);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
}
|
|
|
|
static void posix_worker(test_context *ctx)
|
|
{
|
|
int rv;
|
|
char buf[1];
|
|
|
|
wake_up_master(ctx);
|
|
rtems_test_assert(get_wait_id(ctx) == ctx->pmq);
|
|
|
|
buf[0] = 'x';
|
|
rv = mq_send(ctx->pmq, &buf[0], sizeof(buf), 0);
|
|
rtems_test_assert(rv == 0);
|
|
}
|
|
|
|
static rtems_task worker(rtems_task_argument arg)
|
|
{
|
|
test_context *ctx = (test_context *) arg;
|
|
|
|
rtems_test_assert(get_wait_id(ctx) == 0);
|
|
|
|
classic_worker(ctx);
|
|
posix_worker(ctx);
|
|
}
|
|
|
|
static void test_classic_init(test_context *ctx)
|
|
{
|
|
rtems_status_code sc;
|
|
|
|
sc = rtems_semaphore_create(
|
|
rtems_build_name('S', 'E', 'M', ' '),
|
|
0,
|
|
RTEMS_COUNTING_SEMAPHORE,
|
|
0,
|
|
&ctx->sem
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_semaphore_create(
|
|
rtems_build_name('M', 'T', 'X', ' '),
|
|
1,
|
|
RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY | RTEMS_INHERIT_PRIORITY,
|
|
0,
|
|
&ctx->mtx
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_message_queue_create(
|
|
rtems_build_name('M', 'Q', ' ', ' '),
|
|
1,
|
|
1,
|
|
RTEMS_DEFAULT_ATTRIBUTES,
|
|
&ctx->mq
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_barrier_create(
|
|
rtems_build_name('B', 'R', ' ', ' '),
|
|
RTEMS_BARRIER_AUTOMATIC_RELEASE,
|
|
2,
|
|
&ctx->br
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
}
|
|
|
|
static void test_posix_init(test_context *ctx)
|
|
{
|
|
struct mq_attr attr;
|
|
|
|
memset(&attr, 0, sizeof(attr));
|
|
attr.mq_maxmsg = 1;
|
|
attr.mq_msgsize = sizeof(char);
|
|
|
|
ctx->pmq = mq_open("mq", O_CREAT | O_RDWR, 0x777, &attr);
|
|
rtems_test_assert(ctx->mq != -1);
|
|
}
|
|
|
|
static void test_context_init(test_context *ctx)
|
|
{
|
|
rtems_status_code sc;
|
|
|
|
ctx->master = _Thread_Get_executing();
|
|
ctx->master_id = rtems_task_self();
|
|
|
|
test_classic_init(ctx);
|
|
test_posix_init(ctx);
|
|
|
|
sc = rtems_task_create(
|
|
rtems_build_name('W', 'O', 'R', 'K'),
|
|
2,
|
|
RTEMS_MINIMUM_STACK_SIZE,
|
|
RTEMS_DEFAULT_MODES,
|
|
RTEMS_DEFAULT_ATTRIBUTES,
|
|
&ctx->worker_id
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_task_start(ctx->worker_id, worker, (rtems_task_argument) ctx);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
}
|
|
|
|
static void test_classic_obj(test_context *ctx)
|
|
{
|
|
rtems_status_code sc;
|
|
char buf[1];
|
|
size_t n;
|
|
|
|
wait_for_worker(ctx);
|
|
|
|
sc = rtems_semaphore_obtain(ctx->sem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
wait_for_worker(ctx);
|
|
|
|
sc = rtems_semaphore_obtain(ctx->mtx, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
wait_for_worker(ctx);
|
|
|
|
buf[0] = 'Y';
|
|
n = 123;
|
|
sc = rtems_message_queue_receive(
|
|
ctx->mq,
|
|
&buf[0],
|
|
&n,
|
|
RTEMS_WAIT,
|
|
RTEMS_NO_TIMEOUT
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
rtems_test_assert(buf[0] == 'X');
|
|
rtems_test_assert(n == sizeof(buf));
|
|
|
|
wait_for_worker(ctx);
|
|
|
|
sc = rtems_barrier_wait(ctx->br, RTEMS_NO_TIMEOUT);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
}
|
|
|
|
static void test_posix_obj(test_context *ctx)
|
|
{
|
|
char buf[1];
|
|
unsigned prio;
|
|
ssize_t n;
|
|
|
|
wait_for_worker(ctx);
|
|
|
|
buf[0] = 'y';
|
|
prio = 1;
|
|
n = mq_receive(ctx->pmq, &buf[0], sizeof(buf), &prio);
|
|
rtems_test_assert(n == (ssize_t) sizeof(buf));
|
|
rtems_test_assert(buf[0] == 'x');
|
|
rtems_test_assert(prio == 0);
|
|
}
|
|
|
|
static rtems_task Init(
|
|
rtems_task_argument ignored
|
|
)
|
|
{
|
|
test_context *ctx = &test_instance;
|
|
|
|
TEST_BEGIN();
|
|
|
|
puts( "Init - _Thread_queue_Extract - thread not blocked on a thread queue" );
|
|
_Thread_queue_Extract( _Thread_Get_executing() );
|
|
/* is there more to check? */
|
|
|
|
test_context_init(ctx);
|
|
test_classic_obj(ctx);
|
|
test_posix_obj(ctx);
|
|
|
|
rtems_test_assert( _Thread_queue_Is_empty( &queue.Queue ) );
|
|
|
|
TEST_END();
|
|
rtems_test_exit(0);
|
|
}
|
|
|
|
/* configuration information */
|
|
|
|
#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
|
|
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
|
|
|
|
#define CONFIGURE_MAXIMUM_TASKS 2
|
|
#define CONFIGURE_MAXIMUM_SEMAPHORES 2
|
|
#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
|
|
#define CONFIGURE_MAXIMUM_BARRIERS 1
|
|
|
|
#define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES 1
|
|
#define CONFIGURE_MESSAGE_BUFFER_MEMORY \
|
|
(2 * CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(1, 1))
|
|
|
|
#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
|
|
|
|
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
|
|
|
|
#define CONFIGURE_INIT
|
|
#include <rtems/confdefs.h>
|
|
|
|
/* global variables */
|