Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Fix Solaris stdio signal handling stupidities
author
Linus Torvalds
<torvalds@osdl.org>
Sun, 2 Apr 2006 20:28:27 +0000
(13:28 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Sun, 2 Apr 2006 20:41:56 +0000
(13:41 -0700)
This uses sigaction() to install the SIGALRM handler with SA_RESTART, so
that Solaris stdio doesn't break completely when a signal interrupts a
read.
Thanks to Jason Riedy for confirming the silly Solaris signal behaviour.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
pack-objects.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
473d404
)
diff --git
a/pack-objects.c
b/pack-objects.c
index 8f352aa6c1c99e7bebc7680909c9139c7a6cf623..cde4afa798e093922f3e25738a65b6cc8f400fea 100644
(file)
--- a/
pack-objects.c
+++ b/
pack-objects.c
@@
-53,7
+53,7
@@
static int nr_objects = 0, nr_alloc = 0;
static const char *base_name;
static unsigned char pack_file_sha1[20];
static int progress = 1;
static const char *base_name;
static unsigned char pack_file_sha1[20];
static int progress = 1;
-static volatile
in
t progress_update = 0;
+static volatile
sig_atomic_
t progress_update = 0;
/*
* The object names in objects array are hashed with this hashtable,
/*
* The object names in objects array are hashed with this hashtable,
@@
-685,7
+685,6
@@
static int try_delta(struct unpacked *cur, struct unpacked *old, unsigned max_de
static void progress_interval(int signum)
{
static void progress_interval(int signum)
{
- signal(SIGALRM, progress_interval);
progress_update = 1;
}
progress_update = 1;
}
@@
-820,6
+819,23
@@
static int reuse_cached_pack(unsigned char *sha1, int pack_to_stdout)
return 1;
}
return 1;
}
+static void setup_progress_signal(void)
+{
+ struct sigaction sa;
+ struct itimerval v;
+
+ memset(&sa, 0, sizeof(sa));
+ sa.sa_handler = progress_interval;
+ sigemptyset(&sa.sa_mask);
+ sa.sa_flags = SA_RESTART;
+ sigaction(SIGALRM, &sa, NULL);
+
+ v.it_interval.tv_sec = 1;
+ v.it_interval.tv_usec = 0;
+ v.it_value = v.it_interval;
+ setitimer(ITIMER_REAL, &v, NULL);
+}
+
int main(int argc, char **argv)
{
SHA_CTX ctx;
int main(int argc, char **argv)
{
SHA_CTX ctx;
@@
-885,13
+901,8
@@
int main(int argc, char **argv)
prepare_packed_git();
if (progress) {
prepare_packed_git();
if (progress) {
- struct itimerval v;
- v.it_interval.tv_sec = 1;
- v.it_interval.tv_usec = 0;
- v.it_value = v.it_interval;
- signal(SIGALRM, progress_interval);
- setitimer(ITIMER_REAL, &v, NULL);
fprintf(stderr, "Generating pack...\n");
fprintf(stderr, "Generating pack...\n");
+ setup_progress_signal();
}
while (fgets(line, sizeof(line), stdin) != NULL) {
}
while (fgets(line, sizeof(line), stdin) != NULL) {