| 1056 | } |
| 1057 | |
| 1058 | U32 KProcess::close(FD fildes) { |
| 1059 | KFileDescriptorPtr fd = this->getFileDescriptor(fildes); |
| 1060 | if (!fd) { |
| 1061 | return -K_EBADF; |
| 1062 | } |
| 1063 | clearFdHandle(fd->handle); |
| 1064 | return 0; |
| 1065 | } |
| 1066 | |
| 1067 | U32 KProcess::open(BString path, U32 flags) { |
| 1068 | KFileDescriptorPtr fd; |
nothing calls this directly
no test coverage detected