Changeset 69392 in vbox for trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
- Timestamp:
- Oct 26, 2017 5:24:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r68550 r69392 46 46 #endif 47 47 48 /* @todo move define somewhere else, and make sure it's less than VBGLR0_MAX_HGCM_KERNEL_PARM*/48 /** @todo move define somewhere else, and make sure it's less than VBGLR0_MAX_HGCM_KERNEL_PARM*/ 49 49 /*If we fail to pass data in one chunk, send it in chunks of this size instead*/ 50 50 #define CR_HGCM_SPLIT_BUFFER_SIZE (8*_1M) … … 545 545 546 546 #ifndef IN_GUEST 547 /* @todo get rid of it*/547 /** @todo get rid of it*/ 548 548 static bool _crVBoxHGCMWriteBytes(CRConnection *conn, const void *buf, uint32_t len) 549 549 { … … 593 593 else 594 594 # endif 595 { 595 { 596 596 rc = VbglR3HGCMCall(pData, cbData); 597 597 if (RT_SUCCESS(rc)) … … 916 916 { 917 917 #ifndef IN_GUEST 918 /** @todo remove temp buffer allocation in unpacker*/918 /** @todo remove temp buffer allocation in unpacker*/ 919 919 /* we're at the host side, so just store data until guest polls us */ 920 920 _crVBoxHGCMWriteBytes(conn, start, len); … … 1023 1023 CRASSERT(hgcm_buffer->magic == CR_VBOXHGCM_BUFFER_MAGIC); 1024 1024 1025 /* @todo wrong len for redir buffers*/1025 /** @todo wrong len for redir buffers*/ 1026 1026 conn->recv_credits += hgcm_buffer->len; 1027 1027 … … 1033 1033 #endif 1034 1034 if (g_crvboxhgcm.bufpool) { 1035 /** @todo o'rly? */1035 /** @todo o'rly? */ 1036 1036 /* pool may have been deallocated just a bit earlier in response 1037 1037 * to a SIGPIPE (Broken Pipe) signal. … … 1376 1376 } 1377 1377 1378 /* @todo same, replace DeviceIoControl with vbglR3DoIOCtl */1378 /** @todo same, replace DeviceIoControl with vbglR3DoIOCtl */ 1379 1379 static void crVBoxHGCMDoDisconnect( CRConnection *conn ) 1380 1380 { … … 2189 2189 2190 2190 /* Can't open VBox guest driver here, because it gets called for host side as well */ 2191 /* @todo as we have 2 dll versions, can do it now.*/2191 /** @todo as we have 2 dll versions, can do it now.*/ 2192 2192 2193 2193 #ifdef RT_OS_WINDOWS
Note:
See TracChangeset
for help on using the changeset viewer.