This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: b18: cygwin_except_handler failure on deref NULL


 > Hi Steven, you wrote:
 > 
 > : 	(ENQUIRE.EXE 1011) In cygwin_except_handler
 > 
 > : It failed at the point where the program looks to see if dereferencing
 > : NULL causes a trap (which is done using setjmp, and dereferencing NULL).
 > 
 > I think it worked, because cygwin_except_handler *is* the trap handler!
 > Do you have an complete example in a dozen of source lines or so?

My guess is that this would cause the same fault (but I don't have a
PC to hand):

#include <stdio.h>
#include <signal.h>
#include <setjmp.h>

jmp_buf mlab; int v, *p;

void address(sig) int sig; { /* what to do on an address error */
  signal(sig, address);
  longjmp(mlab, 1);
}

main() {
#ifdef SIGBUS
	signal(SIGBUS, address);
#endif
#ifdef SIGSEGV
	signal(SIGSEGV, address);
#endif
	if (setjmp(mlab) == 0) {
		p= 0;
		v= *p;
		printf("Dereferencing NULL doesn't cause a trap\n");
	} else {
		printf("Dereferencing NULL causes a trap\n");
	}
}

Best wishes,

Steven Pemberton
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]