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

  • Home
  • SEARCH
  • 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 313835
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:08:41+00:00 2026-05-12T08:08:41+00:00

From what I’ve read in the docs, gen_servers don’t trap exits. Moreover, my understanding

  • 0

From what I’ve read in the docs, gen_servers don’t trap exits. Moreover, my understanding is that if a process starts another process with spawn_link, and the child process crashes, the parent crashes too.

However, this is not what I’m seeing. I’ve got a gen_server that spawn_links a process. I set up a function in the child process like so:

test(JobIsHalfDone) -> 
    case JobIsHalfDone of
        true -> exit(test);
        false -> ok
    end.

When this function sends the exit signal, I get a message:

** exception exit: test

Yet its parent gen_server keeps right on ticking. Why?

  • 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-05-12T08:08:41+00:00Added an answer on May 12, 2026 at 8:08 am

    Lets compare experience, I have the following behaviour that says that it does die when a linked process dies.

    1> {ok, Pid} = gen_server:start(server, [], []).
    {ok,<0.33.0>}
    2> gen_server:call(Pid, nice_to_see_you).
    thanks
    3> gen_server:call(Pid, nice_to_see_you).
    thanks
    4> gen_server:call(Pid, twap).           
    oh_noes
    5> gen_server:call(Pid, nice_to_see_you).
    ** exception exit: {noproc,{gen_server,call,[<0.33.0>,nice_to_see_you]}}
         in function  gen_server:call/2
    

    That is, I made it crash by spawn_link:ing a process that does not much but dying, bringing the server down with it.

    -module(server).
    -compile(export_all).
    init(_) ->
      {ok, []}.
    handle_call(twap, _From, State) ->
       spawn_link(fun suicidal/0),
       {reply, oh_noes, State};
    handle_call(_, _From, State) ->
       {reply, thanks, State}.
    suicidal() ->
       exit(kaboom).
    

    The fact that you see the “*** exception exit: test” seems to indicate that you used gen_server:start_link/3 from the shell, so that you gen server is linked to the shell process. That might introduce additional confusion, but nothing explaining why you would think the server didnt die.

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

Sidebar

Ask A Question

Stats

  • Questions 268k
  • Answers 268k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Since code behind is server side and JavaScript is client… May 13, 2026 at 1:08 pm
  • Editorial Team
    Editorial Team added an answer They're using the @font-face directive. @font-face { font-family: "MuseoSans"; src:… May 13, 2026 at 1:08 pm
  • Editorial Team
    Editorial Team added an answer As I managed to come up with a solution myself,… May 13, 2026 at 1:08 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
this is what i have right now Drawing an RSS feed into the php,
I am currently running into a problem where an element is coming back from
I have text I am displaying in SIlverlight that is coming from a CMS
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.