Код: Выделить всё
[StructLayout(LayoutKind.Sequential)]
public struct PollFDStruct
{
public IntPtr fd; // File descriptor to poll
public short events; // Requested events to watch
public short revents; // Returned events
}
[DllImport("libc", SetLastError = true, CallingConvention = CallingConvention.Cdecl)]
public static extern int poll([In, Out] PollFDStruct[] fds, ulong nfds, int timeout);
У кого-нибудь есть подсказки?
Подробнее здесь: https://stackoverflow.com/questions/789 ... l-function
Мобильная версия