ovni/test/rt/nanos6/if0.c
2024-02-20 14:01:18 +01:00

17 lines
254 B
C

/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#define _GNU_SOURCE
#include <unistd.h>
#include "compat.h"
int
main(void)
{
#pragma oss task if (0)
{
sleep_us(1000);
}
return 0;
}