mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
Remove unused variable
* libguile/async.c (scm_i_queue_async_cell): remove unused variable 'count'.
This commit is contained in:
parent
f5556ab3e6
commit
e254747644
1 changed files with 1 additions and 2 deletions
|
@ -240,7 +240,6 @@ scm_i_queue_async_cell (SCM c, scm_i_thread *t)
|
||||||
|
|
||||||
if (sleep_fd >= 0)
|
if (sleep_fd >= 0)
|
||||||
{
|
{
|
||||||
size_t count;
|
|
||||||
char dummy = 0;
|
char dummy = 0;
|
||||||
|
|
||||||
/* Likewise, T might already been done with sleeping here, but
|
/* Likewise, T might already been done with sleeping here, but
|
||||||
|
@ -248,7 +247,7 @@ scm_i_queue_async_cell (SCM c, scm_i_thread *t)
|
||||||
not yet have started sleeping, but this is no problem either
|
not yet have started sleeping, but this is no problem either
|
||||||
since the data written to a pipe will not be lost, unlike a
|
since the data written to a pipe will not be lost, unlike a
|
||||||
condition variable signal. */
|
condition variable signal. */
|
||||||
count = write (sleep_fd, &dummy, 1);
|
write (sleep_fd, &dummy, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This is needed to protect sleep_mutex.
|
/* This is needed to protect sleep_mutex.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue