| 2119 | } |
| 2120 | |
| 2121 | U32 KProcess::epollcreate(U32 size, U32 flags) { |
| 2122 | std::shared_ptr<KObject> o = std::make_shared<KEPoll>(); |
| 2123 | KFileDescriptorPtr result = this->allocFileDescriptor(o, K_O_RDWR, flags, -1, 0); |
| 2124 | return result->handle; |
| 2125 | } |
| 2126 | |
| 2127 | U32 KProcess::epollctl(FD epfd, U32 op, FD fd, U32 address) { |
| 2128 | KFileDescriptorPtr epollFD = this->getFileDescriptor(epfd); |
no test coverage detected