Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
816 views

What is process/reaper and why isn't it working?

When deploying my Rails app via Capistrano, the very last thing it tries to execute is this: sudo -p 'sudo password: ' -u app /home/user/public_html/example.com/current/script/process/reaper Then ...
2
votes
3answers
182 views

Working with a severely limited interpreted language

I'm coding in an embedded language called JS. I want to be able to call three functions in any order. (ABC, ACB, BAC, BCA, CBA, CAB.) The trick? The language doesn't have user-defined functions. It ...
0
votes
2answers
75 views

How to squeeze in additional parameters to a reaper function when a parent is signalled to kill a child (c)?

I'm writing a TCP server that functions very much like a chatroom and came across this question. When a user connects, a child process is created to serve the user. When a user logs in, I store his ...