Rodrigo Arias
ddbb7dd9f4
Adds forwards declarations in headers and includes all headers in sources, even if they are found by transitive includes.
22 lines
444 B
C
22 lines
444 B
C
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#include "instr.h"
|
|
#include "instr_nanos6.h"
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
/* Test that a thread ending while the subsystem still has a value in
|
|
* the stack causes the emulator to fail */
|
|
|
|
instr_start(0, 1);
|
|
|
|
instr_nanos6_worker_loop_enter();
|
|
/* The thread is left in the worker loop state (should fail) */
|
|
|
|
instr_end();
|
|
|
|
return 0;
|
|
}
|