mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 03:30:27 +02:00
(scm_system_async_mark_for_thread): Validate thread argument.
This commit is contained in:
parent
7751157e03
commit
028e573c8a
1 changed files with 6 additions and 3 deletions
|
@ -230,10 +230,13 @@ SCM_DEFINE (scm_system_async_mark_for_thread, "system-async-mark", 1, 1, 0,
|
|||
#define FUNC_NAME s_scm_system_async_mark_for_thread
|
||||
{
|
||||
#ifdef USE_THREADS
|
||||
if (SCM_UNBNDP (thread))
|
||||
thread = scm_current_thread ();
|
||||
else
|
||||
SCM_VALIDATE_THREAD (2, thread);
|
||||
|
||||
scm_i_queue_async_cell (scm_cons (proc, SCM_BOOL_F),
|
||||
(SCM_UNBNDP (thread)
|
||||
? scm_root
|
||||
: scm_i_thread_root (thread)));
|
||||
scm_i_thread_root (thread));
|
||||
#else
|
||||
scm_i_queue_async_cell (scm_cons (proc, SCM_BOOL_F), scm_root);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue