Skip to content

Commit 1e4d9e3

Browse files
committed
Remove unused takebuf_raw() function
1 parent d4ae6ca commit 1e4d9e3

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

base/iostream.jl

-6
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,6 @@ read(s::IOStream, ::Type{Char}) = Char(ccall(:jl_getutf8, UInt32, (Ptr{Void},),
221221
takebuf(s::IOStream) =
222222
ccall(:jl_takebuf, Vector{UInt8}, (Ptr{Void},), s.ios)
223223

224-
function takebuf_raw(s::IOStream)
225-
sz = position(s)
226-
buf = ccall(:jl_takebuf_raw, Ptr{UInt8}, (Ptr{Void},), s.ios)
227-
return buf, sz
228-
end
229-
230224
function readuntil(s::IOStream, delim::UInt8)
231225
ccall(:jl_readuntil, Array{UInt8,1}, (Ptr{Void}, UInt8), s.ios, delim)
232226
end

src/julia.h

-1
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,6 @@ JL_DLLEXPORT int jl_tcp_bind(uv_tcp_t *handle, uint16_t port, uint32_t host,
15851585
JL_DLLEXPORT int jl_sizeof_ios_t(void);
15861586

15871587
JL_DLLEXPORT jl_array_t *jl_takebuf(ios_t *s);
1588-
JL_DLLEXPORT void *jl_takebuf_raw(ios_t *s);
15891588
JL_DLLEXPORT jl_value_t *jl_readuntil(ios_t *s, uint8_t delim);
15901589

15911590
typedef struct {

src/sys.c

-9
Original file line numberDiff line numberDiff line change
@@ -250,15 +250,6 @@ JL_DLLEXPORT jl_array_t *jl_takebuf(ios_t *s)
250250
return a;
251251
}
252252

253-
// the returned buffer must be manually freed. To determine the size,
254-
// call position(s) before using this function.
255-
JL_DLLEXPORT void *jl_takebuf_raw(ios_t *s)
256-
{
257-
size_t sz;
258-
void *buf = ios_takebuf(s, &sz);
259-
return buf;
260-
}
261-
262253
JL_DLLEXPORT jl_value_t *jl_readuntil(ios_t *s, uint8_t delim)
263254
{
264255
jl_array_t *a;

0 commit comments

Comments
 (0)