Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8787495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T21:54:29+00:00 2026-06-13T21:54:29+00:00

I have written a Linux daemon in C++. The code is something like this:

  • 0

I have written a Linux daemon in C++. The code is something like this:

int main(int argc, char** argv)
{
    daemon(1, 0); // Daemonize itself, retaining the current working directory and redirecting stdin, stdout and stderr to /dev/null.
    // My program logic goes here
}

The problem is, my program logic throws exceptions occasionally. How do I catch the exceptions so that I can know where goes wrong?

I know that for a plain console application, the uncaught exception will be dumped to the console. In my case, after calling daemon(1, 0), the console is no longer accessible.

On Windows, any uncaught exceptions will be saved by the OS, and can be viewed via the Event Viewer in Computer Management. Is there a similar mechanism on Linux?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T21:54:30+00:00Added an answer on June 13, 2026 at 9:54 pm

    You have two solutions:

    • one: you change your call to the daemon function to

      daemon(1,1);
      

      which will let the program still have access to stdout and subsequently the default behaviour of dumping uncaught exceptions to the console will be preserved.

    • two: you don’t change the call, but you add a global try { /* main code here */ } catch(...){ /* logging code here */ } to log any uncaught exception to file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a server daemon (Linux, Ubuntu) which communicates with PHP as frontend
I have a c++ source code that was written in linux/unix environment by some
I have a larger code running in Linux, written in c++ (c++11) and python
I have written this code inside a servlet to delete certain records from three
I have written this code in JavaScript and works perfectly fine when I include
I have written a linux daemon that will be (and must be) running as
I have written a daemon in linux for doing dhcp for an embedded system.
I have written some code which compiles fine under linux but on Solaris I
I have written certain code which doesn't exactly have a main method. But I
I have a Linux app (written in C) that allocates large amount of memory

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.