1. 40043ed Added -k option to kill an existing wineserver. by Alexandre Julliard · 23 years ago
  2. 4144b5b Create the server directory and socket file in /tmp. by Alexandre Julliard · 23 years ago
  3. 93bfa0d Implementation for console control events (includes process groups support). by Eric Pouech · 23 years ago
  4. 5188574 Renamed handle_t to obj_handle_t to avoid conflict with rpcdce.h. by Alexandre Julliard · 23 years ago
  5. ca96de3 Fixed process startup synchronization broken by previous change. by Alexandre Julliard · 23 years ago
  6. 9d80215 A few optimizations in the process startup requests now that Winelib by Alexandre Julliard · 23 years ago
  7. 5769d1d Better support for configure detection of missing types, added check by Alexandre Julliard · 23 years ago
  8. ad16fc9 Avoid crash when trying to attach to a terminating process. by Alexandre Julliard · 23 years ago
  9. f5e0f0c Added timer on server exit to wait a bit for new clients. by Alexandre Julliard · 23 years ago
  10. 6543a65 Transfer the full process startup info as well as the command-line by Alexandre Julliard · 23 years ago
  11. aeb5660 Correctly fill parent pid, module size and module name in process and by Alexandre Julliard · 23 years ago
  12. 0799c1a Added LGPL standard comment, and copyright notices where necessary. by Alexandre Julliard · 23 years ago
  13. fbccb38 New XP debugging APIs: implemented DebugActiveProcessStop, by Eric Pouech · 23 years ago
  14. 6f011c0 - move async activation into the server - implement async queues by Mike McCormack · 23 years ago
  15. 3940d8a Let the console renderer be defined as a thread. by Eric Pouech · 23 years ago
  16. 9caa71e Redesign of the server communication protocol to allow arbitrary sized by Alexandre Julliard · 23 years ago
  17. 0b83d4c New console code based on Win32 windows. by Eric Pouech · 23 years ago
  18. 49c779a Prevent warnings about labels at end of switch statements when by James Juran · 23 years ago
  19. ac2e4f1 Don't keep main exe and dlls handles open when the file is on removable media. by Alexandre Julliard · 23 years ago
  20. 5f258c6 Backed out the suspend_process_for_ptrace change. by Alexandre Julliard · 24 years ago
  21. 7614180 Small fixes to the debugger support. by Alexandre Julliard · 24 years ago
  22. 8859d77 Create the server pipes on the client side and transfer them to the by Alexandre Julliard · 24 years ago
  23. f524240 New mechanism to transfer file descriptors from client to server. by Alexandre Julliard · 24 years ago
  24. a4bc5a2 Pass the stdin/stdout handles on startup to use as console (based on a by Alexandre Julliard · 24 years ago
  25. e9936d9 Changed wait_process and wait_debug_event requests to never block; by Alexandre Julliard · 24 years ago
  26. 2362380 Added separate queue for "system" APCs that get called even when the by Alexandre Julliard · 24 years ago
  27. ad29b90 Send the exe file handle in init_process_done request. by Alexandre Julliard · 24 years ago
  28. 8081e5a Added handle_t type to server interface so that we can make handles by Alexandre Julliard · 24 years ago
  29. 7f74824 Fixed error recovery during thread creation. by Alexandre Julliard · 24 years ago
  30. 1ab243b Merged the get_read_fd and get_write_fd requests. by Alexandre Julliard · 24 years ago
  31. 914406f Moved LDT handling to libwine.so. Changed the interface to use the by Alexandre Julliard · 24 years ago
  32. 57f05e1 Converted a few more server requests to the new mechanism. by Alexandre Julliard · 24 years ago
  33. c941eff Make GetTickCount not use the whole Unix epoch (since 1970) any more, by Andreas Mohr · 25 years ago
  34. 9264300 Converted a lot of server requests to the new exception handling mechanism. by Alexandre Julliard · 25 years ago
  35. a37dec0 Pass the main exe name in the CREATE_PROCESS debug event. by Alexandre Julliard · 25 years ago
  36. 43a27e3 Implemented local atoms in the server. by Turchanov Sergei · 25 years ago
  37. c5e433a Moved idle event handling to the server. by Alexandre Julliard · 25 years ago
  38. d27624b Store process file name in startup info. Fixed exe_file handling. by Alexandre Julliard · 25 years ago
  39. 5b4f3e8 Rewrote Unix process launching to allow passing startup information to by Alexandre Julliard · 25 years ago
  40. 07d8446 Implemented thread and (partial) module snapshots, based on the work by Alexandre Julliard · 25 years ago
  41. 6a72dc5 Load done event now created by the server. by Alexandre Julliard · 25 years ago
  42. 1134215 Temporary hack to share handles between processes sharing the same by Alexandre Julliard · 25 years ago
  43. ef88637 Made request tracing more robust against bogus lengths. by Alexandre Julliard · 25 years ago
  44. b73421d Set thread start address to 0 on events generated by by Alexandre Julliard · 25 years ago
  45. 9a0e28f Fixed a couple of file descriptor leaks. by Alexandre Julliard · 25 years ago
  46. 12f29b5 Have threads and processes exit more cleanly whenever possible. by Alexandre Julliard · 25 years ago
  47. 98aacc7 Avoid SIGSTOP/SIGCONT race when ptrace is disabled. by Alexandre Julliard · 25 years ago
  48. ea0d028 Added specific routines for OUTPUT_DEBUG_STRING and EXCEPTION debug events. by Alexandre Julliard · 25 years ago
  49. 05f0b71 Store the list of loaded dlls in the server, and generate debug events by Alexandre Julliard · 25 years ago
  50. 00641d5 Removed PDB32_DEBUGGED flag and send all debug events unconditionally. by Alexandre Julliard · 25 years ago
  51. ff81d78 Generate CREATE_PROCESS/THREAD debug events internally in the server. by Alexandre Julliard · 25 years ago
  52. 67a24c8 Store the handle of the process exe file in the server. by Alexandre Julliard · 25 years ago
  53. 717bf7e Added definition for STILL_ACTIVE. by Dave Pickles · 25 years ago
  54. fb32c7b Fixed minor issues found by winapi_check. by Patrik Stridvall · 25 years ago
  55. 0a7c1f6 Implemented GetThreadSelectorEntry through the server. by Alexandre Julliard · 25 years ago
  56. 2fe5777 Made the server listen for new clients on a Unix socket in by Alexandre Julliard · 25 years ago
  57. cb1fc73 Changed the server to return STATUS_* error codes. by Alexandre Julliard · 25 years ago
  58. 1dca5e2 Moved poll handling to the generic part of the server objects. by Alexandre Julliard · 25 years ago
  59. d083a7b Fixed DEBUG_ONLY_THIS_PROCESS again (thanks to Ulrich Weigand). by Alexandre Julliard · 25 years ago
  60. 17cf810 Fixed handling of debug events on thread/process exit. by Alexandre Julliard · 25 years ago
  61. 42666ee Portability fixes. by Alexandre Julliard · 25 years ago
  62. 578c100 Moved ptrace support to ptrace.c. Tried to improve portability. by Alexandre Julliard · 25 years ago
  63. eef7025 Added support for WriteProcessMemory through the server. by Alexandre Julliard · 25 years ago
  64. 8b8828f Added support for ReadProcessMemory through the server. by Alexandre Julliard · 25 years ago
  65. ec7bb23 Added support for CREATE_SUSPENDED flag in CreateProcess. by Alexandre Julliard · 25 years ago
  66. 0a70783 Preliminary ptrace support. by Alexandre Julliard · 25 years ago
  67. ebe29ef Further server optimizations: by Alexandre Julliard · 26 years ago
  68. 5bc7808 Made server communication faster by using a shared memory block. by Alexandre Julliard · 26 years ago
  69. 039aa42 Return console handles in alloc_console request. by Alexandre Julliard · 26 years ago
  70. 791c84c Fixed initial process refcount. by Alexandre Julliard · 26 years ago
  71. eb2e77f Made handle table a separate object. by Alexandre Julliard · 26 years ago
  72. d2b7a0b Added support for dumping variable-size data of server replies. by Alexandre Julliard · 26 years ago
  73. e712e07 Added debug events support. by Alexandre Julliard · 26 years ago
  74. 3da5f84 Moved process structure definition to process.h. by Alexandre Julliard · 26 years ago
  75. 43c190e Server reorganization: by Alexandre Julliard · 26 years ago
  76. 1ae869c Added env ptr to new_process request by Alexandre Julliard · 26 years ago
  77. 17e3b97 Create startup info for the initial process. by Alexandre Julliard · 26 years ago
  78. f692d44 Added new_process and init_process request. by Alexandre Julliard · 26 years ago
  79. dbc033a Fixed process_signaled (thanks to Uwe Bonnes). by Alexandre Julliard · 26 years ago
  80. c642e4a open_object should return ERROR_FILE_NOT_FOUND when the named object by Juergen Schmied · 26 years ago
  81. 875d112 Removed dst_handle in duplicate_handle request. by Alexandre Julliard · 26 years ago
  82. fdc92ba Added server snapshot support (processes only for now). by Alexandre Julliard · 26 years ago
  83. 62a8b43 Hacked server-side device support by Alexandre Julliard · 26 years ago
  84. 0562539 Implemented file sharing checks in the server. by Alexandre Julliard · 26 years ago
  85. 63cb0f8 Added change notifications. Added global handle support. by Alexandre Julliard · 26 years ago
  86. aa0ebd0 Added several file server requests Added server-side pipes and consoles by Alexandre Julliard · 26 years ago
  87. 338e757 Added beginnings of server-side file handling. by Alexandre Julliard · 26 years ago
  88. c6e45ed Added add_queue/remove_queue to server object operations. by Alexandre Julliard · 26 years ago
  89. d30dfd2 Release 980927 by Alexandre Julliard · 27 years ago wine-980927
  90. 85ed45e Release 980822 by Alexandre Julliard · 27 years ago wine-980822
  91. 767e6f6 Release 980809 by Alexandre Julliard · 27 years ago wine-980809
  92. 642d313 Release 980712 by Alexandre Julliard · 27 years ago wine-980712