summaryrefslogtreecommitdiff
path: root/libguile/read.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2016-04-27 20:54:10 +0200
committerAndy Wingo <wingo@pobox.com>2016-04-28 08:16:42 +0200
commitee4854a315a902d64c6de0ff27ac2d423dc75600 (patch)
treee977c89d9e445fcc146459c049489e6f2e8fba73 /libguile/read.c
parent15d53047233ad3d3b1ac39764d3c417e3b87f118 (diff)
downloadguile-ee4854a315a902d64c6de0ff27ac2d423dc75600.tar.gz
Remove port locking around write, display
* libguile/print.c (scm_write, scm_display): * libguile/read.c (set_port_read_option): Remove port locking. Reading and writing to the same port from multiple threads just must not crash; it doesn't have to make sense.
Diffstat (limited to 'libguile/read.c')
-rw-r--r--libguile/read.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libguile/read.c b/libguile/read.c
index ca9694f89..20de0bb9b 100644
--- a/libguile/read.c
+++ b/libguile/read.c
@@ -2252,9 +2252,6 @@ set_port_read_option (SCM port, int option, int new_value)
new_value &= READ_OPTION_MASK;
- scm_dynwind_begin (0);
- scm_dynwind_lock_port (port);
-
scm_read_options = scm_i_port_property (port, sym_port_read_options);
if (scm_is_unsigned_integer (scm_read_options, 0, READ_OPTIONS_MAX_VALUE))
read_options = scm_to_uint (scm_read_options);
@@ -2264,8 +2261,6 @@ set_port_read_option (SCM port, int option, int new_value)
read_options |= new_value << option;
scm_read_options = scm_from_uint (read_options);
scm_i_set_port_property_x (port, sym_port_read_options, scm_read_options);
-
- scm_dynwind_end ();
}
/* Set OPTS and PORT's case-insensitivity according to VALUE. */