1. 156b205 server: Add support for system processes, that can be signaled to exit when all non-system processes are done. by Alexandre Julliard · 18 years ago
  2. 4c5b55a server: Run async I/O APCs from the SIGUSR1 handler. by Alexandre Julliard · 18 years ago
  3. 8992f89 server: Remove the extra apc_arg parameter now that user APCs all require the same arg as the kernel APC. by Alexandre Julliard · 18 years ago
  4. ec86243 server: When starting a new process, use the token from the calling process, if one exists. by Rob Shearman · 18 years ago
  5. bdf964d server: Move most of the duplicate_token request to a new function, token_duplicate, to enable the code to be used inside wineserver. by Rob Shearman · 18 years ago
  6. 1b15d45 server: Don't allow a waitable timer to be set to expire in the past. by Alexandre Julliard · 18 years ago
  7. fa074bc server: Add the logon SID to the default admin token's groups. by Rob Shearman · 18 years ago
  8. 627ca40 server: Stop exporting the console_input structure. Get rid of console.h. by Alexandre Julliard · 18 years ago
  9. 9d74661 server: Move console codepages to the server. by Kirill K. Smirnov · 18 years ago
  10. 545d7f1 server: Fix access check in screen buffer handling. by Kirill K. Smirnov · 18 years ago
  11. fea59c8 server: set_server_state needs to be called with non-NULL server. by Marcus Meissner · 18 years ago
  12. aafcfe7 server: Add support for retrieving results of queued ioctls once they are done. by Alexandre Julliard · 18 years ago
  13. 78b7510 server: Add request to retrieve the next pending ioctl call for a device manager. by Alexandre Julliard · 18 years ago
  14. 61e08b3 server: Add support for queuing ioctl calls to a device. by Alexandre Julliard · 18 years ago
  15. b43dc15 server: Add support for generic device objects managed from the client side. by Alexandre Julliard · 18 years ago
  16. 46fe717 server: Allocate the wait event for FSCTL_PIPE_WAIT on the server side. by Alexandre Julliard · 18 years ago
  17. 63a2372 server: Allocate the wait event for FSCTL_PIPE_LISTEN on the server side. by Alexandre Julliard · 18 years ago
  18. fd59e15 server: Infrastructure to return a wait handle for blocking ioctls. by Alexandre Julliard · 18 years ago
  19. 017480d server: Store valid file options in pseudo file descriptors. by Alexandre Julliard · 18 years ago
  20. 48c5321 server: Give system APCs priority over signaled objects. by Alexandre Julliard · 18 years ago
  21. 133b8bc server: Return a more correct fd type for anonymous files. by Alexandre Julliard · 18 years ago
  22. d529c63 server: Silence compiler warning in fd_queue_async(). by Gerald Pfeifer · 18 years ago
  23. bf5b6c9 server: Don't give out read/write access to the named pipe device. by Alexandre Julliard · 18 years ago
  24. c18e8d6 server: Use the standard file descriptor wait queue for named pipe server async waits. by Alexandre Julliard · 18 years ago
  25. 6105a93 server: Moved the FSCTL_PIPE_LISTEN implementation to the server. by Alexandre Julliard · 18 years ago
  26. f3fbae4 server: Allow specifying the status code to return on file descriptors that don't have a Unix fd. by Alexandre Julliard · 18 years ago
  27. 3684dc1 server: Move the FSCTL_PIPE_WAIT ioctl implementation to the server. by Alexandre Julliard · 18 years ago
  28. 737148c server: Add a specific data type for ioctl codes so they can be printed as symbols. by Alexandre Julliard · 18 years ago
  29. aaf477f server: Change the timeout handling to use NT-style 64-bit timeouts everywhere. by Alexandre Julliard · 18 years ago
  30. 2669af7 server: Move the server part of device unmounting to the ioctl processing. by Alexandre Julliard · 18 years ago
  31. 8c46095 server: Implement the FSCTL_PIPE_DISCONNECT ioctl on the server side. by Alexandre Julliard · 18 years ago
  32. 6357143 server: Add infrastructure for ioctl server request. by Alexandre Julliard · 18 years ago
  33. 3f05759 server: Don't bother with default entry points for objects that don't even return an fd. by Alexandre Julliard · 18 years ago
  34. 72ff2bf server: Create a separate fd object for each mailslot writer. Make them first-class file handles. by Alexandre Julliard · 18 years ago
  35. d85121f ntdll: Store the file access and options in the fd cache, and get rid of the dynamic flags. by Alexandre Julliard · 18 years ago
  36. 7a9363a server: Rename the get_file_info function to get_fd_type and get rid of the flags. by Alexandre Julliard · 18 years ago
  37. f85437c server: Store the opening options in the file descriptor instead of in the individual objects. by Alexandre Julliard · 18 years ago
  38. bc426ab server: Explicitly shutdown closed pipes to prevent access from file descriptors cached in the client. by Alexandre Julliard · 18 years ago
  39. 72bff2e server: Add support for restarting an async I/O when the client side couldn't finish it right away. by Alexandre Julliard · 18 years ago
  40. a867553 server: Use the standard file descriptor signal mechanism for directory changes. by Alexandre Julliard · 18 years ago
  41. ba896e7 server: Fix the handling of the signaled status for file descriptors. by Alexandre Julliard · 18 years ago
  42. 0cb29f4 server: Add support for associating a file descriptor to a message queue. by Alexandre Julliard · 18 years ago
  43. 3d39c62 make_requests: More aggressive grepping for status values. by Alexandre Julliard · 18 years ago
  44. b2cba95 server: Hold a pointer to the queue from the async operations. by Alexandre Julliard · 18 years ago
  45. 4e5c703 server: Make timeout status for async I/O specifiable. Fix mailslots timeout handling. by Alexandre Julliard · 18 years ago
  46. 0aae1ca server: Add a separate function to set the timeout of an async I/O operation. by Alexandre Julliard · 18 years ago
  47. 02ed704 server: Check file access in register_async before calling the object method. by Alexandre Julliard · 18 years ago
  48. df09ac5 server: Make async I/O queues into real objects. by Alexandre Julliard · 18 years ago
  49. d99ee34 server: Use the fd generic wait queue for directory change I/O operations. by Alexandre Julliard · 18 years ago
  50. fd6f83d server: Take advantage of the fd generic wait queue to remove a lot of serial code. by Alexandre Julliard · 18 years ago
  51. e92f854 server: Avoid redundant polling in fd_queue_async_timeout. by Alexandre Julliard · 18 years ago
  52. 95ba4b5 server: Add a generic wait queue to the file descriptor object. by Alexandre Julliard · 18 years ago
  53. df65187 server: Remove the return value of the flush() method, it's not used. by Alexandre Julliard · 18 years ago
  54. c16eb8e server: Add support for queuing a user APC upon async I/O completion. by Alexandre Julliard · 18 years ago
  55. 589ce2b server: Always return STATUS_PENDING when an async I/O operation has been queued. by Alexandre Julliard · 18 years ago
  56. 73e0e8b server: A named pipe wait can be satisfied by an idle pipe server too. by Alexandre Julliard · 18 years ago
  57. 28a9374 server: Print the callback function in the APC_ASYNC_IO trace. by Alexandre Julliard · 18 years ago
  58. de1866d server: Implement the open_file method for named pipes. by Alexandre Julliard · 18 years ago
  59. 806bb49 server: Implement the open_file method for mailslots. by Alexandre Julliard · 18 years ago
  60. 928d28f server: Don't enforce mailslots path format in ntdll, only in the server. by Alexandre Julliard · 18 years ago
  61. 50c4800 server: Don't enforce named pipes path format in ntdll, only in the server. by Alexandre Julliard · 18 years ago
  62. 846dc62 server: Create the named pipe and mailslot devices under \Device. by Alexandre Julliard · 18 years ago
  63. 94655c8 server: Implemented the open_file method for named pipe and mailslot devices. by Alexandre Julliard · 18 years ago
  64. 7e71c1d server: Add an open_file() function to the object operations. by Alexandre Julliard · 18 years ago
  65. 2082a97 server: Use a standard async I/O event to signal directory changes. by Alexandre Julliard · 18 years ago
  66. a133ad5 server: Move the signalling of the named pipe completion event to the server. by Alexandre Julliard · 18 years ago
  67. 8adce77 server: Notify the async object when the APC call completed. by Alexandre Julliard · 18 years ago
  68. fa4679f server: Add support for storing an event to signal upon async I/O completion. by Alexandre Julliard · 18 years ago
  69. 111610c server: Add an async_data_t structure to store parameters for async I/O requests. by Alexandre Julliard · 18 years ago
  70. 50975c8 server: Return the status from an async I/O APC call to the server. by Alexandre Julliard · 18 years ago
  71. 06db705 server: Make struct async into a real object, to keep it around while the APC is running. by Alexandre Julliard · 18 years ago
  72. 52a9af7 server: Grab the owner object of an APC while the APC is executing. by Alexandre Julliard · 18 years ago
  73. eb3728d server: Use the common pattern for async I/O parameters in named pipe requests. by Alexandre Julliard · 18 years ago
  74. b1788c8 server: Replace inline static with static inline. by Andrew Talbot · 18 years ago
  75. 0d16a7b Fixed some compilation issues on Mac OS X Leopard. by Alexandre Julliard · 18 years ago
  76. f279252 server: Added process control support using /proc on Solaris. by Alexandre Julliard · 18 years ago
  77. bf17ce8 server: Use internal luid_t type where appropriate. by Alexandre Julliard · 18 years ago
  78. c2cb296 ntdll: Implement NtAllocateLocallyUniqueId with server call. by Juan Lang · 18 years ago
  79. 221e01a server: A general solution for handling MAXIMUM_ALLOWED access right has been implemented so remove the workarounds. by Rob Shearman · 18 years ago
  80. b3fb3a6 server: Replace use of internal __pthread_kill() function by a system call. by Alexandre Julliard · 18 years ago
  81. 1767b45 server: Expose areas revealed by changes to the window region. by Alexandre Julliard · 18 years ago
  82. d342d14 server: Add get_token_impersonation_level server call for retrieving the impersonation level from a token. by Rob Shearman · 18 years ago
  83. 6a76a0a server: Check object's security when creating handles. by Rob Shearman · 18 years ago
  84. 89faee0 server: Added support for the PM_QS_* flags in PeekMessage. by Alexandre Julliard · 18 years ago
  85. c9b9847 server: Track the impersonation level of tokens. by Rob Shearman · 18 years ago
  86. df0d625 server: Track IDs for tokens and modifications made to tokens. by Rob Shearman · 18 years ago
  87. b0e9d7e ntdll/server: Implement NtSetSecurityObject. With tests. by Vitaliy Margolen · 18 years ago
  88. 5ec1718 server: Add security descriptor field to object struct. by Vitaliy Margolen · 18 years ago
  89. 6413a9c server: Get the primary group from the token's groups. by Vitaliy Margolen · 18 years ago
  90. aa28ed0 server: Fix typo. Should be group not owner. by Vitaliy Margolen · 18 years ago
  91. 49868e3 server: Clear the thread wait before releasing objects to avoid nested calls. by Alexandre Julliard · 18 years ago
  92. cae37b1 wineserver: Validate the children of windows being hidden. by Ulrich Czekalla · 18 years ago
  93. 55fdda4 server: Prevent a crash on error while creating a token. by Vitaliy Margolen · 18 years ago
  94. c04e7e7 advapi32: Add more tests for granted access mask. Fix test on Wine. by Vitaliy Margolen · 18 years ago
  95. bae7502 server/ntdll: Simplistic implementation of NtQueryObject(ObjectBasicInformation). by Vitaliy Margolen · 18 years ago
  96. fad936c server: Reverse return value and status in token_access_check to be consistent. by Vitaliy Margolen · 18 years ago
  97. 2cf11ef advapi32: Add few more tests for token access check and fix it on Wine. by Vitaliy Margolen · 18 years ago
  98. 97b122c server: User correct user sid for the default_dacl. by Vitaliy Margolen · 18 years ago
  99. e612bd4 server: Add generic access mapping for winstation and desktop objects. by Vitaliy Margolen · 18 years ago
  100. f3cb4f7 ntdll: Avoid inter-process APCs when called for the process itself. by Alexandre Julliard · 18 years ago