Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
972ed3cc
Commit
972ed3cc
authored
Nov 01, 2005
by
Pekka Pessi
Browse files
Not using SIGPIPE if it is not found by configure.
darcs-hash:20051101112607-65a35-d2abfba05342f4c2dd247be20aa257140260d8e9.gz
parent
2ee0a72a
Changes
1
Hide whitespace changes
Inline
Side-by-side
libsofia-sip-ua/su/su_timer_test.c
View file @
972ed3cc
...
...
@@ -165,9 +165,11 @@ int main(int argc, char *argv[])
test_break
,
0
);
signal
(
SIGINT
,
intr_handler
);
#if HAVE_SIGPIPE
signal
(
SIGPIPE
,
intr_handler
);
signal
(
SIGQUIT
,
intr_handler
);
signal
(
SIGHUP
,
intr_handler
);
#endif
t
=
su_timer_create
(
su_root_task
(
root
),
interval
);
t1
=
su_timer_create
(
su_root_task
(
root
),
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment