2023-02-27 13:40:20 +01:00
|
|
|
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
2023-02-20 18:42:15 +01:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
|
|
|
|
/* Spawn a task from an external thread that calls some nanos6
|
|
|
|
* functions. The external thread must be paused when the task pauses
|
|
|
|
* the execution. This emulates the same behavior as TAMPI when using a
|
|
|
|
* polling task. */
|
|
|
|
|
|
|
|
#define _DEFAULT_SOURCE
|
|
|
|
|
|
|
|
#include <nanos6.h>
|
|
|
|
#include <nanos6/library-mode.h>
|
|
|
|
#include <pthread.h>
|
2023-05-02 16:55:47 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
2023-02-20 18:42:15 +01:00
|
|
|
|
|
|
|
#include "common.h"
|
2023-05-03 11:12:07 +02:00
|
|
|
#include "compat.h"
|
|
|
|
|
|
|
|
volatile int complete = 0;
|
2023-02-20 18:42:15 +01:00
|
|
|
|
|
|
|
static double
|
|
|
|
get_time_ms(void)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
return (double) ts.tv_sec + (double) ts.tv_nsec * 1.0e-9;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dummy_work(double ms)
|
|
|
|
{
|
|
|
|
double end = get_time_ms() + ms * 1e-3;
|
|
|
|
while (get_time_ms() < end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
polling_func(void *arg)
|
|
|
|
{
|
|
|
|
double ms = *((double *) arg);
|
|
|
|
double end = get_time_ms() + ms * 1e-3;
|
|
|
|
while (get_time_ms() < end) {
|
|
|
|
dummy_work(1.0); /* 1 ms */
|
|
|
|
nanos6_wait_for(1000UL); /* 1 ms */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 11:12:07 +02:00
|
|
|
static void
|
|
|
|
complete_func(void *arg)
|
|
|
|
{
|
|
|
|
UNUSED(arg);
|
|
|
|
complete = 1;
|
|
|
|
}
|
|
|
|
|
2023-12-19 13:10:08 +01:00
|
|
|
/* Call the nanos6_spawn_function from an external thread without
|
|
|
|
* instrumentation. */
|
2023-02-20 18:42:15 +01:00
|
|
|
static void *
|
|
|
|
spawn(void *arg)
|
|
|
|
{
|
2023-12-19 13:10:08 +01:00
|
|
|
/* Here Nanos6 will try to write events in the thread stream,
|
|
|
|
* but the thread has not been initialized so it will abort */
|
2023-05-03 11:12:07 +02:00
|
|
|
nanos6_spawn_function(polling_func, arg,
|
|
|
|
complete_func, NULL, "polling_task");
|
2023-12-19 13:10:08 +01:00
|
|
|
|
|
|
|
/* Not reached */
|
2023-02-20 18:42:15 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
pthread_t th;
|
2023-05-02 16:55:47 +02:00
|
|
|
double *T = malloc(sizeof(double));
|
|
|
|
if (T == NULL)
|
|
|
|
die("malloc failed:");
|
|
|
|
|
|
|
|
*T = 100.0;
|
2023-02-20 18:42:15 +01:00
|
|
|
|
|
|
|
if (pthread_create(&th, NULL, spawn, &T) != 0)
|
|
|
|
die("pthread_create failed:");
|
|
|
|
|
|
|
|
if (pthread_join(th, NULL) != 0)
|
|
|
|
die("pthread_join failed:");
|
|
|
|
|
|
|
|
#pragma oss task label("dummy_task")
|
2023-05-02 16:55:47 +02:00
|
|
|
dummy_work(*T);
|
2023-02-20 18:42:15 +01:00
|
|
|
|
|
|
|
#pragma oss taskwait
|
|
|
|
|
2023-05-03 11:12:07 +02:00
|
|
|
while (!complete)
|
|
|
|
sleep_us(100);
|
|
|
|
|
|
|
|
free(T);
|
|
|
|
|
2023-02-20 18:42:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|