mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-10 16:20:42 +00:00
-[NSFileHandle initWithFileDescriptor:] logs a message each time fstat() doesn't succeed on UNIX
fstat() on UNIX isn't guaranteed to always succeed, even if the file handle is valid. Special files may or may not support fstat() in the kernel. (For context, I'm working on a Vulkan application. Vulkan has facilities to send certain objects across processes by representing the objects as file descriptors. These file descriptors still need to be close()d, which makes them good candidates for wrapping an NSFileHandle around them, but they do not support fstat(). I'm creating multiple of these each frame in the application, which means the line "unable to get status of descriptor" appears very often in the terminal while my application is running.)
This commit is contained in:
parent
4d3926d250
commit
e39309a7e9
1 changed files with 0 additions and 5 deletions
|
@ -1108,11 +1108,6 @@ NSString * const GSSOCKSRecvAddr = @"GSSOCKSRecvAddr";
|
|||
*/
|
||||
isStandardFile = NO;
|
||||
#else
|
||||
/* This should never happen on unix. If it does, we have somehow
|
||||
* ended up with a bad descriptor.
|
||||
*/
|
||||
NSLog(@"unable to get status of descriptor %d - %@",
|
||||
desc, [NSError _last]);
|
||||
isStandardFile = NO;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue