2016-02-21 18:33:13 +01:00
|
|
|
/****************************************************************************
|
2019-01-23 21:21:13 +01:00
|
|
|
* apps/testing/smp/smp_main.c
|
2016-02-21 18:33:13 +01:00
|
|
|
*
|
2021-06-10 07:51:27 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2016-02-21 18:33:13 +01:00
|
|
|
*
|
2021-06-10 07:51:27 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-02-21 18:33:13 +01:00
|
|
|
*
|
2021-06-10 07:51:27 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2016-02-21 18:33:13 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-02-09 07:57:06 +01:00
|
|
|
#include <sched.h>
|
2016-02-21 18:33:13 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define HOG_MSEC 1000
|
|
|
|
#define YIELD_MSEC 100
|
|
|
|
#define IMPOSSIBLE_CPU -1
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static pthread_barrier_t g_smp_barrier;
|
2021-06-10 12:32:19 +02:00
|
|
|
static volatile int g_thread_cpu[CONFIG_TESTING_SMP_NBARRIER_THREADS + 1];
|
2016-02-21 18:33:13 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: show_cpu / show_cpu_conditional
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This depends on internal OS interfaces that are not generally available
|
|
|
|
* but can be accessed (albeit inappropriatley) in a FLAT build
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void show_cpu(FAR const char *caller, int threadno)
|
|
|
|
{
|
2020-02-09 07:57:06 +01:00
|
|
|
g_thread_cpu[threadno] = sched_getcpu();
|
2021-06-10 12:32:19 +02:00
|
|
|
printf("%s[%d]: Running on CPU%d\n",
|
|
|
|
caller, threadno, g_thread_cpu[threadno]);
|
2016-02-21 18:33:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void show_cpu_conditional(FAR const char *caller, int threadno)
|
|
|
|
{
|
2020-02-09 07:57:06 +01:00
|
|
|
int cpu = sched_getcpu();
|
2016-02-21 18:33:13 +01:00
|
|
|
|
|
|
|
if (cpu != g_thread_cpu[threadno])
|
|
|
|
{
|
|
|
|
g_thread_cpu[threadno] = cpu;
|
|
|
|
printf("%s[%d]: Now running on CPU%d\n", caller, threadno, cpu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: hog_milliseconds
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Delay inline for the specified number of milliseconds.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void hog_milliseconds(unsigned int milliseconds)
|
|
|
|
{
|
|
|
|
volatile unsigned int i;
|
|
|
|
volatile unsigned int j;
|
|
|
|
|
|
|
|
for (i = 0; i < milliseconds; i++)
|
|
|
|
{
|
|
|
|
for (j = 0; j < CONFIG_BOARD_LOOPSPERMSEC; j++)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: hog_time
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Delay for awhile, calling pthread_yield() now and then to allow other
|
|
|
|
* pthreads to get CPU time.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void hog_time(FAR const char *caller, int threadno)
|
|
|
|
{
|
|
|
|
unsigned int remaining = HOG_MSEC;
|
|
|
|
unsigned int hogmsec;
|
|
|
|
|
|
|
|
while (remaining > 0)
|
|
|
|
{
|
|
|
|
/* Hog some CPU */
|
|
|
|
|
|
|
|
hogmsec = YIELD_MSEC;
|
|
|
|
if (hogmsec > remaining)
|
|
|
|
{
|
|
|
|
hogmsec = remaining;
|
|
|
|
}
|
|
|
|
|
|
|
|
hog_milliseconds(hogmsec);
|
|
|
|
remaining -= hogmsec;
|
|
|
|
|
|
|
|
/* Let other threads run */
|
|
|
|
|
2020-01-02 13:09:50 +01:00
|
|
|
pthread_yield();
|
2016-02-21 18:33:13 +01:00
|
|
|
show_cpu_conditional(caller, threadno);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: barrier_thread
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static pthread_addr_t barrier_thread(pthread_addr_t parameter)
|
|
|
|
{
|
|
|
|
int threadno = (int)((intptr_t)parameter);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
printf("Thread[%d]: Started\n", threadno);
|
|
|
|
show_cpu("Thread", threadno);
|
|
|
|
|
|
|
|
/* Hog some CPU time */
|
|
|
|
|
|
|
|
hog_time("Thread", threadno);
|
|
|
|
|
|
|
|
/* Wait at the barrier until all threads are synchronized. */
|
|
|
|
|
|
|
|
printf("Thread[%d]: Calling pthread_barrier_wait()\n",
|
|
|
|
threadno);
|
|
|
|
fflush(stdout);
|
|
|
|
show_cpu_conditional("Thread", threadno);
|
|
|
|
|
|
|
|
ret = pthread_barrier_wait(&g_smp_barrier);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
printf("Thread[%d]: Back with ret=0 (I am not special)\n",
|
|
|
|
threadno);
|
|
|
|
}
|
|
|
|
else if (ret == PTHREAD_BARRIER_SERIAL_THREAD)
|
|
|
|
{
|
|
|
|
printf("Thread[%d]: Back with "
|
|
|
|
"ret=PTHREAD_BARRIER_SERIAL_THREAD (I AM SPECIAL)\n",
|
|
|
|
threadno);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Thread[%d]: ERROR could not get semaphore value\n",
|
|
|
|
threadno);
|
|
|
|
}
|
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
show_cpu_conditional("Thread", threadno);
|
|
|
|
|
|
|
|
/* Hog some more CPU time */
|
|
|
|
|
|
|
|
hog_time("Thread", threadno);
|
|
|
|
|
|
|
|
/* Then exit */
|
|
|
|
|
|
|
|
printf("Thread[%d]: Done\n", threadno);
|
|
|
|
fflush(stdout);
|
|
|
|
show_cpu_conditional("Thread", threadno);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* smp_main
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int main(int argc, FAR char *argv[])
|
|
|
|
{
|
2019-01-23 21:21:13 +01:00
|
|
|
pthread_t threadid[CONFIG_TESTING_SMP_NBARRIER_THREADS];
|
2016-02-21 18:33:13 +01:00
|
|
|
pthread_addr_t result;
|
|
|
|
pthread_attr_t attr;
|
|
|
|
pthread_barrierattr_t barrierattr;
|
|
|
|
int errcode = EXIT_SUCCESS;
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
2016-02-21 20:29:25 +01:00
|
|
|
/* Initialize data */
|
|
|
|
|
2021-06-10 12:32:19 +02:00
|
|
|
memset(threadid,
|
|
|
|
0,
|
|
|
|
sizeof(pthread_t) * CONFIG_TESTING_SMP_NBARRIER_THREADS);
|
2019-01-23 21:21:13 +01:00
|
|
|
for (i = 0; i <= CONFIG_TESTING_SMP_NBARRIER_THREADS; i++)
|
2016-02-21 20:29:25 +01:00
|
|
|
{
|
|
|
|
g_thread_cpu[i] = IMPOSSIBLE_CPU;
|
2019-01-23 21:21:13 +01:00
|
|
|
if (i < CONFIG_TESTING_SMP_NBARRIER_THREADS)
|
2016-02-21 20:29:25 +01:00
|
|
|
{
|
|
|
|
threadid[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 18:33:13 +01:00
|
|
|
show_cpu(" Main", 0);
|
|
|
|
printf(" Main[0]: Initializing barrier\n");
|
|
|
|
|
|
|
|
ret = pthread_barrierattr_init(&barrierattr);
|
|
|
|
if (ret != OK)
|
|
|
|
{
|
2021-06-10 12:32:19 +02:00
|
|
|
printf(" Main[0]: pthread_barrierattr_init failed, ret=%d\n",
|
|
|
|
ret);
|
2016-02-21 18:33:13 +01:00
|
|
|
|
|
|
|
errcode = EXIT_FAILURE;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = pthread_barrier_init(&g_smp_barrier, &barrierattr,
|
2019-01-23 21:21:13 +01:00
|
|
|
CONFIG_TESTING_SMP_NBARRIER_THREADS);
|
2016-02-21 18:33:13 +01:00
|
|
|
if (ret != OK)
|
|
|
|
{
|
2021-07-28 16:57:53 +02:00
|
|
|
printf(" Main[0]: pthread_barrier_init failed, ret=%d\n",
|
2021-06-10 12:32:19 +02:00
|
|
|
ret);
|
2016-02-21 18:33:13 +01:00
|
|
|
|
|
|
|
errcode = EXIT_FAILURE;
|
|
|
|
goto errout_with_attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the barrier */
|
|
|
|
|
2020-01-02 13:09:50 +01:00
|
|
|
pthread_barrierattr_init(&barrierattr);
|
2016-02-21 18:33:13 +01:00
|
|
|
|
2019-01-23 21:21:13 +01:00
|
|
|
/* Start CONFIG_TESTING_SMP_NBARRIER_THREADS thread instances */
|
2016-02-21 18:33:13 +01:00
|
|
|
|
|
|
|
ret = pthread_attr_init(&attr);
|
|
|
|
if (ret != OK)
|
|
|
|
{
|
|
|
|
printf(" Main[0]: pthread_attr_init failed, ret=%d\n", ret);
|
|
|
|
|
|
|
|
errcode = EXIT_FAILURE;
|
|
|
|
goto errout_with_barrier;
|
|
|
|
}
|
|
|
|
|
2019-01-23 21:21:13 +01:00
|
|
|
for (i = 0; i < CONFIG_TESTING_SMP_NBARRIER_THREADS; i++)
|
2016-02-21 18:33:13 +01:00
|
|
|
{
|
|
|
|
ret = pthread_create(&threadid[i], &attr, barrier_thread,
|
2021-06-10 12:32:19 +02:00
|
|
|
(pthread_addr_t)((uintptr_t)i + 1));
|
2016-02-21 18:33:13 +01:00
|
|
|
if (ret != 0)
|
|
|
|
{
|
2021-06-10 12:32:19 +02:00
|
|
|
printf(" Main[0]: Error in thread %d create, ret=%d\n",
|
|
|
|
i + 1, ret);
|
2016-02-21 18:33:13 +01:00
|
|
|
printf(" Main[0]: Test aborted with waiting threads\n");
|
|
|
|
|
|
|
|
errcode = EXIT_FAILURE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-06-10 12:32:19 +02:00
|
|
|
printf(" Main[0]: Thread %d created\n", i + 1);
|
2016-02-21 18:33:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
show_cpu_conditional(" Main", 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
show_cpu_conditional(" Main", 0);
|
|
|
|
|
|
|
|
/* Wait for all thread instances to complete */
|
|
|
|
|
2019-01-23 21:21:13 +01:00
|
|
|
for (i = 0; i < CONFIG_TESTING_SMP_NBARRIER_THREADS; i++)
|
2016-02-21 18:33:13 +01:00
|
|
|
{
|
2016-05-12 01:41:13 +02:00
|
|
|
if (threadid[i] != 0)
|
2016-02-21 18:33:13 +01:00
|
|
|
{
|
|
|
|
ret = pthread_join(threadid[i], &result);
|
|
|
|
show_cpu_conditional(" Main", 0);
|
|
|
|
|
|
|
|
if (ret != 0)
|
|
|
|
{
|
2021-06-10 12:32:19 +02:00
|
|
|
printf(" Main[0]: Error in thread %d join, ret=%d\n",
|
|
|
|
i + 1, ret);
|
2016-02-21 18:33:13 +01:00
|
|
|
errcode = EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-06-10 12:32:19 +02:00
|
|
|
printf(" Main[0]: Thread %d completed with result=%p\n",
|
|
|
|
i + 1, result);
|
2016-02-21 18:33:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Destroy the barrier */
|
|
|
|
|
|
|
|
errout_with_barrier:
|
|
|
|
ret = pthread_barrier_destroy(&g_smp_barrier);
|
|
|
|
if (ret != OK)
|
|
|
|
{
|
|
|
|
printf(" Main[0]: pthread_barrier_destroy failed, ret=%d\n", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
errout_with_attr:
|
|
|
|
ret = pthread_barrierattr_destroy(&barrierattr);
|
|
|
|
if (ret != OK)
|
|
|
|
{
|
|
|
|
printf(" Main[0]: pthread_barrierattr_destroy failed, ret=%d\n",
|
|
|
|
ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
errout:
|
|
|
|
fflush(stdout);
|
|
|
|
show_cpu_conditional(" Main", 0);
|
|
|
|
return errcode;
|
|
|
|
}
|