| 967 | } |
| 968 | |
| 969 | static void lwp_fd_release(int fdt_type, int fd) |
| 970 | { |
| 971 | struct dfs_fdtable *fdt; |
| 972 | |
| 973 | if (fdt_type) |
| 974 | { |
| 975 | fdt = dfs_fdtable_get_global(); |
| 976 | } |
| 977 | else |
| 978 | { |
| 979 | fdt = dfs_fdtable_get(); |
| 980 | } |
| 981 | fdt_fd_release(fdt, fd); |
| 982 | } |
| 983 | |
| 984 | static int _chfd_alloc(int fdt_type) |
| 985 | { |
no test coverage detected