Questions tagged [defunct]
35 questions
0
votes
1 answer
Killing forked process in a socket server
I've written a socket based multi client server and a client as an assigment, but I don't seem to be able to get rid of forked processes. Every time I close the client, or enter the exiting command, the process doesn't seem to close. When checked ps…

Ričardas Mikelionis
- 133
- 1
- 3
- 12
0
votes
2 answers
Can't install bigrf package
I'm having some extremely frustrating difficulty installing the bigrf R package.
I have tried the following:
install.packages('bigrf',repo='https://github.com/aloysius-lim/bigrf.git',type='source')
^^with dev mode…

user3180258
- 97
- 13
0
votes
2 answers
Emacs Custom macro/key-binding to add initials and datetime to code comment
I'm looking for the cleanest way to have a language agnostic keybinding that will insert my initials + formatted timestamp e.g.:
-- (28 Oct 2013 11:38:20 AM)
into an Emacs buffer, so that I can initial my comments. I know I could…

NFicano
- 1,065
- 1
- 11
- 26
0
votes
1 answer
How to intepret c++ process ubuntu
I'm running some C++ code (8 independent processes running on Ubuntu with 8 cores).
I'm launching the C processes using python:
def runC():
numThreads = multiprocessing.cpu_count()
threads = []
for i in range(numThreads):
args =…

Tom Swifty
- 2,864
- 2
- 16
- 25
-1
votes
1 answer
Zombie processes, here we go again
I'm struggling a lot with multiprocessing/threading/subprocessing. What I'm basically trying to do is to execute every single binary available on my computer, I wrote a python script to do so. But I keep having zombie processes ("defunct"), which…

ShellCode
- 1,072
- 8
- 17