Hi.
Since 1994 I have designed and implemented an application in HPUX under MICROFOCUS SERVER EXPRES.
Now I have to migrate that application to LINUX, but my surprise is that the architecture of that application, inspired by parent child processes,
does not allow this migration due to the use of the fork() function. error 96.
It doesn't help me to implement multithreading or calls to exec() functions because that means rendering the entire application.
Any ideas? The application covers a critical service of a financial entity.


