Title
Can we relax the preconditions of longjmp?
Status
nad
Section
[csetjmp.syn]
Submitter
Jiang An

Created on 2021-12-15.00:00:00 last changed 27 months ago

Messages

Date: 2022-01-30.17:02:00

Proposed resolution:

This wording is relative to N4901.

  1. Modify [csetjmp.syn] as indicated:

    -2- The function signature longjmp(jmp_buf jbuf, int val) has more restricted behavior in this document. A setjmp/longjmp call pair has undefined behavior iIf replacing the setjmp and longjmp in a setjmp/longjmp call pair by catch and throw would invoke any non-trivial destructors for any objects with automatic storage duration, it is unspecified whether the destructor is invoked for each such object. The behavior is undefined if the program depends on the side effects produced by any such unspecified destructor calls. A call to setjmp or longjmp has undefined behavior if invoked in a suspension context of a coroutine ([expr.await]).

Date: 2022-01-30.00:00:00

[ 2022-01-30 Duplicate of CWG 2361. Status changed: New → NAD. ]

Date: 2021-12-15.00:00:00

IMO the UB in [csetjmp.syn]/2 is because of the design that "every destructor call for an object shall be in effect when the lifetime of that object ends". A similar requirement is in [basic.life]/5, but it's more relaxed than the requirement for setjmp/longjmp. It seems better to harmonize the requirements in [basic.life]/5 and [csetjmp.syn]/2, which allows longjmp to skip non-trivial but no-op destructor calls. Given that Microsoft UCRT's longjmp can sometimes (but not always) call destructors, IMO we should say that it's unspecified whether longjmp calls destructor for any object whose lifetime ends.

History
Date User Action Args
2022-01-30 17:02:00adminsetmessages: + msg12311
2022-01-30 17:02:00adminsetstatus: new -> nad
2021-12-18 15:46:39adminsetmessages: + msg12255
2021-12-15 00:00:00admincreate