| 952 | } |
| 953 | |
| 954 | static struct dfs_file *lwp_fd_get(int fdt_type, int fd) |
| 955 | { |
| 956 | struct dfs_fdtable *fdt; |
| 957 | |
| 958 | if (fdt_type) |
| 959 | { |
| 960 | fdt = dfs_fdtable_get_global(); |
| 961 | } |
| 962 | else |
| 963 | { |
| 964 | fdt = dfs_fdtable_get(); |
| 965 | } |
| 966 | return fdt_get_file(fdt, fd); |
| 967 | } |
| 968 | |
| 969 | static void lwp_fd_release(int fdt_type, int fd) |
| 970 | { |
no test coverage detected