1
vote
4answers
221 views
How do I code a watchdog timer to restart a Windows service?
I'm very interested in the answer to another question regarding watchdog timers for Windows services (see here). That answer stated:
I have also used an internal watchdog syste …
0
votes
1answer
39 views
Drupal watchdog database table flooded with same message over and over?
I've:
Disabled cron
Disabled database logging
Cleared my caches
Commented out the code that is being displayed as the error
And still, the same error message is being written t …
2
votes
3answers
662 views
Can I create a software watchdog timer thread in C++ using Boost Signals2 and Threads?
I am running function Foo from somebody else's library in a single-threaded application currently. Most of the time, I make a call to Foo and it's really quick, some times, I make …
2
votes
7answers
196 views
How to determine which task is dead?
I have an embedded system that has multiple (>20) tasks running at different priorities. I also have watchdog task that runs to check that all the other tasks are not stuck. My w …
1
vote
4answers
211 views
Crash reporting watchdog for when my application locks up on a customer’s machine
I'm working with a somewhat unreliable (Qt/windows) application partly written for us by a third party (just trying to shift the blame there). Their latest version is more stable. …
4
votes
6answers
298 views
How to debug a watchdog timeout
I have a watchdog in my microcontroller that if it is not kicked, will reset the processor. My applications runs fine for a while but will eventually reset because the watchdog di …
2
votes
6answers
953 views
Linux software watchdog
I am writing a system monitor for Linux and want to include some watchdog functionality. In the kernel, you can configure the watchdog to keep going even if /dev/watchdog is closed …
0
votes
3answers
215 views
Infinite loop in FreeBSD
I have a script that constantly segfaults - the problem that I can't solve as segfault is in python libxml bindings - didn't write those. Ok, so in Linux I used to run an inf.loop …
7
votes
2answers
1k views
How can I verify if a Windows Service is running
Hi,
I have an application in C# (2.0 running in XP embedded) that is using a watchdog that is implemented as a Windows Service. When the device boots, this service typically takes …
