If I do this below:
for i in range(10000):
os.fork()
What's going on? don't consider reaping.. I just wanna know about os.fork() can make how much processes in linux, if it 's just like windows, only can make about 2000 processes, how the next 8000 processes will do?
Thanks.