gtp_u_kernel: Support file:open() returning FDesc module=raw_file_io_… #2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…list for NSfd
In my erlang OTP-26 environment, the file:open() functions returns the following as FDesc:
"""
{file_descriptor,raw_file_io_list,
{file_descriptor,
prim_file,
#{handle => #Ref<0.114031393.2719088661.121660>,
owner => <0.526.0>,
r_buffer => #Ref<0.114031393.2719088642.121370>,
r_ahead_size => 0}}}
"""
In this case, the OS file descriptor has to be obtained from the inner FDesc structure, in the handle field. Furthermore, the pointer needs to be converted to its integer using the prim_file:get_handle() function, and finally converted to an integer.