diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-03-19 06:37:47 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-03-19 06:37:47 +0000 |
commit | fc469b900f7693d96fae49cf20d628473dff7f29 (patch) | |
tree | 7d31600cb647c8357e1becf33b21082301274777 /pid.c | |
parent | 037e41134f40c5e47713e9647335afea66f87f46 (diff) | |
download | lcd4linux-fc469b900f7693d96fae49cf20d628473dff7f29.tar.gz |
[lcd4linux @ 2004-03-19 06:37:47 by reinelt]
asynchronous thread handling started
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@403 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'pid.c')
-rw-r--r-- | pid.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: pid.c,v 1.5 2004/03/03 04:44:16 reinelt Exp $ +/* $Id: pid.c,v 1.6 2004/03/19 06:37:47 reinelt Exp $ * * PID file handling * @@ -22,6 +22,9 @@ * * * $Log: pid.c,v $ + * Revision 1.6 2004/03/19 06:37:47 reinelt + * asynchronous thread handling started + * * Revision 1.5 2004/03/03 04:44:16 reinelt * changes (cosmetics?) to the big patch from Martin * hash patch un-applied @@ -75,6 +78,10 @@ #include "pid.h" #include "qprintf.h" +#ifdef WITH_DMALLOC +#include <dmalloc.h> +#endif + int pid_init (const char *pidfile) { |