LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Slackware64 13.37 multilib + doxygen (https://www.linuxquestions.org/questions/slackware-14/slackware64-13-37-multilib-doxygen-877876/)

sycamorex 04-29-2011 01:45 PM

Slackware64 13.37 multilib + doxygen
 
I've had some problems with doxygen document generator while compiling some slackbuilds. I've noticed it on libdvdcss, libmpdclient and a few more. In most cases the compilation process halts (freezes) and the last thing mentioned is doxygen. Each time it creates a new doxygen process which takes up 99-100% of CPU. At some point I noticed there are 3 doxygen processes showing 100% CPU usage. Worse still, I don't seem to be able to kill those processes:
Code:


root@sheldon:/home/sycamorex# ps aux | grep doxygen
root    18760 99.7  0.1  29912 10168 ?        RN  19:20  17:58 /usr/bin/doxygen doc/doxygen.conf
root    24388 99.7  0.1  35432 11284 ?        RN  19:31  6:42 doxygen doxygen.cfg
root    24941  0.0  0.0  4392  580 pts/3    S+  19:38  0:00 grep doxygen
root@sheldon:/home/sycamorex# kill 18760
root@sheldon:/home/sycamorex# ps aux | grep doxygen
root    18760 99.7  0.1  29912 10168 ?        RN  19:20  18:12 /usr/bin/doxygen doc/doxygen.conf
root    24388 99.6  0.1  35432 11284 ?        RN  19:31  6:57 doxygen doxygen.cfg
root    24952  0.0  0.0  4392  576 pts/3    S+  19:38  0:00 grep doxygen
root@sheldon:/home/sycamorex# kill -9 18760
root@sheldon:/home/sycamorex# ps aux | grep doxygen
root    18760 99.7  0.1  29912 10168 ?        RN  19:20  18:21 /usr/bin/doxygen doc/doxygen.conf
root    24388 99.7  0.1  35432 11284 ?        RN  19:31  7:05 doxygen doxygen.cfg
root    24960  0.0  0.0  4392  580 pts/3    S+  19:38  0:00 grep doxygen
root@sheldon:/home/sycamorex# kill -9 24388
root@sheldon:/home/sycamorex# ps aux | grep doxygen
root    18760 99.7  0.1  29912 10168 ?        RN  19:20  18:31 /usr/bin/doxygen doc/doxygen.conf
root    24388 99.7  0.1  35432 11284 ?        RN  19:31  7:16 doxygen doxygen.cfg
root    24968  0.0  0.0  4392  580 pts/3    S+  19:38  0:00 grep doxygen

I've come across another post like that in which the OP used successfully --disable-doc flag.
http://www.linuxquestions.org/questi...roblem-877543/
It may work but I'm not sure if it solves the problem.

Any hints on that?


All times are GMT -5. The time now is 04:45 PM.