How to Raise SIGTERM in Windows [closed]

Use the raise function:

int ret;
ret = raise(SIGTERM);

Leave a Comment