ovni/test/rt/nanos6/if0.c

17 lines
254 B
C
Raw Normal View History

2023-02-27 13:40:20 +01:00
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
2022-09-19 12:39:02 +02:00
* SPDX-License-Identifier: GPL-3.0-or-later */
#define _GNU_SOURCE
#include <unistd.h>
#include "compat.h"
int
main(void)
{
2023-02-27 13:39:14 +01:00
#pragma oss task if (0)
{
sleep_us(1000);
}
return 0;
}