我试图在 c 中实现超时机制。我想要一个特定的函数执行 15 秒。如果执行时间超过 15 秒,程序应该终止。
例如:
void somefunction()
{
//------------
}
void main()
{
somefunction();//this function should have execution time of 30 seconds.
//If it takes more than 30 seconds it should timeout and pop and error.
}