Browse Source

--- Merging r14931 into '.':
U rtl/linux/linux.pp

# revisions: 14931
------------------------------------------------------------------------
r14931 | marco | 2010-02-20 23:24:01 +0100 (Sat, 20 Feb 2010) | 2 lines
Changed paths:
M /trunk/rtl/linux/linux.pp

* epoll_oneshot constant, mantis 15732

------------------------------------------------------------------------

git-svn-id: branches/fixes_2_4@14983 -

marco 15 years ago
parent
commit
32a8793f55
1 changed files with 1 additions and 0 deletions
  1. 1 0
      rtl/linux/linux.pp

+ 1 - 0
rtl/linux/linux.pp

@@ -115,6 +115,7 @@ const
   EPOLLOUT = $04; { The associated file is available for write(2) operations. }
   EPOLLERR = $08; { Error condition happened on the associated file descriptor. }
   EPOLLHUP = $10; { Hang up happened on the associated file descriptor. }
+  EPOLLONESHOT = $40000000; { Sets the One-Shot behaviour for the associated file descriptor. }
   EPOLLET  = $80000000; { Sets  the  Edge  Triggered  behaviour  for  the  associated file descriptor. }
 
   { Valid opcodes ( "op" parameter ) to issue to epoll_ctl }