summaryrefslogtreecommitdiff
path: root/libguile/scmsigs.c
AgeCommit message (Expand)AuthorFilesLines
2004-08-02* numbers.h, numbers.c, discouraged.h, discouraged.c (scm_short2num,Marius Vollmer1-16/+16
2004-07-27* tags.h, deprecated.h (SCM_EQ_P): Deprecated by moving it intoMarius Vollmer1-2/+2
2004-07-23* deprecated.h, deprecated.c, numbers.h (SCM_INUMP, SCM_NINUMP,Marius Vollmer1-8/+8
2004-07-10* validate.h, deprecated.h (SCM_VALIDATE_INUM, SCM_VALIDATE_INUM_COPY,Marius Vollmer1-25/+8
2004-07-08* numbers.h (SCM_MAKINUM, SCM_I_MAKINUM): Renamed SCM_MAKINUM toMarius Vollmer1-6/+6
2004-07-06* deprecated.h, boolean.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOL,Marius Vollmer1-7/+7
2004-05-10(scm_sigaction_for_thread): Validate that the handler is indeed aMarius Vollmer1-1/+1
2004-04-05(scm_sigaction_for_thread): Correction to signum rangeKevin Ryde1-2/+2
2003-04-05Changed license terms to the plain LGPL thru-out.Marius Vollmer1-35/+11
2003-03-25* scmsigs.c: #include <config.h> if HAVE_CONFIG_H.Rob Browning1-0/+4
2002-11-03* __scm.h (USE_THREADS, GUILE_ISELECT): Define whenMarius Vollmer1-41/+3
2002-10-27(signal_cell_handlers, install_handler_data,Marius Vollmer1-20/+153
2002-10-16(scm_sigaction_for_thread): It's "USE_THREADS" not "USE_THREAD".Marius Vollmer1-1/+1
2002-10-11* async.c (s_scm_system_async_mark_for_thread): Only callMarius Vollmer1-0/+11
2002-10-10(scm_sigaction_for_thread): Store original handler in signal_handlers,Marius Vollmer1-2/+1
2002-10-05* async.c (scm_async_click): Set the cdr of a executed handlerMarius Vollmer1-1/+1
2002-10-04* scmsigs.h (scm_sigaction_for_thread): New prototype.Marius Vollmer1-47/+55
2002-07-202002-07-20 Han-Wen <hanwen@cs.uu.nl>Han-Wen Nienhuys1-17/+16
2002-03-14Retire inclusion guard macro SCM_MAGIC_SNARFER.Thien-Thi Nguyen1-2/+0
2002-01-282002-01-28 Stefan Jahn <stefan@lkcc.org>Stefan Jahn1-1/+1
2001-11-25(scm_take_signal): Removed all code that assumes that signal handlersMarius Vollmer1-30/+1
2001-11-11* Documentation work.Neil Jerram1-4/+4
2001-11-02Made `usleep()' avalable on MinGW.Marius Vollmer1-2/+3
2001-07-21 * scmsigs.c: include sys/time.h for itimer stuff.Gary Houston1-0/+4
2001-07-19* scmsigs.c (s_scm_setitimer): new function.Rob Browning1-0/+90
2001-07-09Remove "face-lift" comment.Thien-Thi Nguyen1-2/+0
2001-06-26Make compilation under Windows easier.Martin Grabmüller1-0/+12
2001-06-26 * eval.c (scm_call_0, scm_call_1, scm_call_2, scm_call_3,Keisuke Nishida1-3/+2
2001-05-20(scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,Marius Vollmer1-2/+3
2001-05-15Merge from mvo-vcell-cleanup-1-branch.Marius Vollmer1-7/+7
2001-05-04 * eval.c (scm_promise_p), list.c (scm_append_x, scm_reverse_x),Neil Jerram1-1/+0
2001-04-10* Avoid redundant casting of argument numbers to char* and vice versa.Dirk Herrmann1-3/+3
2001-03-16 * list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),Martin Grabmüller1-2/+2
2001-03-11Use SCM_LISTn instead of scm_listify.Keisuke Nishida1-1/+1
2001-03-10* _scm.h: Removed #include <errno.h>.Mikael Djurfeldt1-1/+3
2001-03-09Remove #include <stdio.h>. Add #include <string.h>.Keisuke Nishida1-1/+0
2001-02-02New functions: scm_c_make_vector, scm_c_make_hash_table.Keisuke Nishida1-2/+1
2000-11-17* alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,Marius Vollmer1-0/+2
2000-06-18* scmsigs.c (s_scm_sigaction): guard the SIGIOT case with anMichael Livshin1-1/+1
2000-06-14 * scmsigs.c (scm_init_scmsigs): if HAVE_SIGINTERRUPT is notGary Houston1-1/+1
2000-06-10* guile-doc-snarf.in: don't pipe the CPP output right into sed --Michael Livshin1-15/+17
2000-06-05* scmsigs.c (scm_sigaction): Silently ignore setting handlers forMarius Vollmer1-4/+27
2000-06-05* Removed SCM_TRUE_P since it may get confused with !SCM_FALSEP.Dirk Herrmann1-1/+1
2000-06-03* scmsigs.c (scm_segfaulr): Removed. (Was probably added byMikael Djurfeldt1-10/+1
2000-05-30* Removed mit-threads and fsu-threads and references.Dirk Herrmann1-7/+0
2000-05-08* scmsigs.c (take_signal): Execute SCM_ASYNC_TICK for SIGSEGV,Marius Vollmer1-0/+2
2000-05-03* scmsigs.c (orig_handlers) [HAVE_SIGACTION]: Fix declaration toMarius Vollmer1-0/+10
2000-05-01 * scmsigs.c: fix the definition of orig_handlers for the caseGary Houston1-2/+2
2000-04-21* Makefile.am (DEFS): Added. automake adds -I options to DEFS,Mikael Djurfeldt1-7/+7
2000-03-29Don't use C operators == and != to compare SCM values.Dirk Herrmann1-1/+1