Hello! The header basically describes what I need; I am dealing with a server that wants a response really fast, yet I need to do some processing when I get its request. So, I need to accept data from it -> tell it "ok" -> then do a 30s job. No scheduling needed, requests never overlap, and the sending server does not care about job results.
I tried spawning a thread, but it does not do the job (seems to be killed), and then I read it's unsupported.
What should the solution be then?