ObjFW  Check-in [9048af968e]

Overview
Comment:OFApplication: Don't use SA_RESTART

This way, the behavior is consistent, independent of whether sigaction()
is available or not.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.90-release | 0.90
Files: files | file ages | folders
SHA3-256: 9048af968e085d9b4863b5111aff414e67ca8c20a66ded9191dca06e5a5c9b49
User & Date: js on 2017-08-01 13:56:22
Other Links: branch diff | manifest | tags
Context
2017-08-02
20:24
OFFile: Remove the b modes from MorphOS check-in: 37b6ed2a2a user: js tags: 0.90
2017-08-01
13:56
OFApplication: Don't use SA_RESTART check-in: 9048af968e user: js tags: 0.90-release, 0.90
13:52
ChangeLog: Add 0.90 check-in: 882748e3da user: js tags: 0.90
Changes

Modified configure.ac from [60ef9bb65c] to [3aa7cec1c9].

652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
652
653
654
655
656
657
658


659
660
661
662
663
664
665







-
-







	])
	AS_IF([test x"$enable_static" = x"yes" -o x"$enable_shared" = x"no"], [
		AC_SUBST(ENCODINGS_A, "encodings.a")
		AC_SUBST(ENCODINGS_ENCODINGS_A, "encodings/encodings.a")
	])
])

AC_CHECK_FUNCS(sigaction)

AC_CHECK_FUNCS(arc4random random, break)

AC_CHECK_LIB(dl, dlopen, LIBS="$LIBS -ldl")
AC_CHECK_HEADERS_ONCE(dlfcn.h)
case "$host_os" in
	netbsd*)
		dnl dladdr exists on NetBSD, but it is completely broken.

Modified src/OFApplication.m from [c9d4f7d315] to [a37acbc186].

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
67
68
69
70
71
72
73






74
75
76
77
78
79
80







-
-
-
-
-
-








#ifdef OF_NINTENDO_DS
# define asm __asm__
# include <nds.h>
# undef asm
#endif

#ifdef HAVE_SIGACTION
# ifndef SA_RESTART
#  define SA_RESTART 0
# endif
#endif

@interface OFApplication ()
- (instancetype)of_init OF_METHOD_FAMILY(init);
- (void)of_setArgumentCount: (int *)argc
	  andArgumentValues: (char **[])argv;
#ifdef OF_WINDOWS
- (void)of_setArgumentCount: (int)argc
      andWideArgumentValues: (wchar_t *[])argv;
505
506
507
508
509
510
511
512
513
514
515
516

517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
499
500
501
502
503
504
505





506













507
508
509
510
511
512
513
514

515
516
517
518
519
520
521







-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-








-







- (id <OFApplicationDelegate>)delegate
{
	return _delegate;
}

- (void)setDelegate: (id <OFApplicationDelegate>)delegate
{
#ifdef HAVE_SIGACTION
	struct sigaction sa = { .sa_flags = SA_RESTART };
	sigemptyset(&sa.sa_mask);

# define REGISTER_SIGNAL(sig)						\
#define REGISTER_SIGNAL(sig)						\
	if ([delegate respondsToSelector:				\
	    @selector(applicationDidReceive##sig)]) {			\
		_##sig##Handler = (void (*)(id, SEL))[(id)delegate	\
		    methodForSelector:					\
		    @selector(applicationDidReceive##sig)];		\
									\
		sa.sa_handler = handle##sig;				\
	} else								\
		sa.sa_handler = SIG_DFL;				\
									\
	OF_ENSURE(sigaction(sig, &sa, NULL) == 0);
#else
# define REGISTER_SIGNAL(sig)						\
	if ([delegate respondsToSelector:				\
	    @selector(applicationDidReceive##sig)]) {			\
		_##sig##Handler = (void (*)(id, SEL))[(id)delegate	\
		    methodForSelector:					\
		    @selector(applicationDidReceive##sig)];		\
		signal(sig, handle##sig);				\
	} else								\
		signal(sig, (void (*)(int))SIG_DFL);
#endif

	_delegate = delegate;

	REGISTER_SIGNAL(SIGINT)
#ifdef SIGHUP
	REGISTER_SIGNAL(SIGHUP)
#endif