1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-22 20:40:29 +02:00

Remove scm_c_read_bytes_unlocked

* libguile/ports.c (scm_c_read_bytes_unlocked): Remove internal
  function.
This commit is contained in:
Andy Wingo 2016-04-22 21:39:18 +02:00
parent 99899b7c9c
commit 9632b24c4d

View file

@ -1486,8 +1486,8 @@ scm_i_read_unlocked (SCM port, SCM buf)
returns less than SIZE bytes if at end-of-file.
Warning: Doesn't update port line and column counts! */
static size_t
scm_c_read_bytes_unlocked (SCM port, SCM dst, size_t start, size_t count)
size_t
scm_c_read_bytes (SCM port, SCM dst, size_t start, size_t count)
#define FUNC_NAME "scm_c_read_bytes"
{
size_t to_read = count;
@ -1584,20 +1584,6 @@ scm_c_read (SCM port, void *buffer, size_t size)
}
#undef FUNC_NAME
size_t
scm_c_read_bytes (SCM port, SCM dst, size_t start, size_t count)
{
scm_i_pthread_mutex_t *lock;
size_t ret;
scm_c_lock_port (port, &lock);
ret = scm_c_read_bytes_unlocked (port, dst, start, count);
if (lock)
scm_i_pthread_mutex_unlock (lock);
return ret;
}
/* Update the line and column number of PORT after consumption of C. */
static inline void
update_port_lf (scm_t_wchar c, SCM port)