]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sckint.h
* Some more CopyObject()
[wxWidgets.git] / include / wx / sckint.h
index e42b7bfb9ed889fb0a4e42b4a23eb1eda89ea5f5..8d90c4b133e289cb269ef3141435ab13cf664ae9 100644 (file)
@@ -61,6 +61,8 @@ class SockRequest
 };
 
 class wxSocketInternal;
+
+#if wxUSE_THREADS
 class SocketWaiter: public wxThread {
  public:
   SocketWaiter(wxSocketBase *socket, wxSocketInternal *internal);
@@ -100,6 +102,8 @@ class SocketRequester: public wxThread {
   wxSocketInternal *m_internal;
   int m_fd;
 };
+#endif
+  // wxUSE_THREADS
 
 class wxSocketInternal {
  public:
@@ -126,13 +130,16 @@ class wxSocketInternal {
   SockRequest *WaitForReq();
   void EndRequest(SockRequest *req);
  public:
-  wxMutex m_socket_locker, m_fd_locker, m_request_locker;
-  wxCondition m_socket_cond;
   wxSocketBase *m_socket;
+#if wxUSE_THREADS
+  wxMutex m_socket_locker, m_fd_locker, m_request_locker, m_end_requester;
+  wxCondition m_socket_cond;
   SocketWaiter *m_thread_waiter;
   SocketRequester *m_thread_requester;
+#endif
   wxList m_requests;
   int m_fd;
+  bool m_invalid_requester;
 };
 
 #endif