VirtualBox

Ignore:
Timestamp:
Aug 16, 2016 2:05:58 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
110221
Message:

scm: cleaning up todos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/haiku/SharedFolders/vboxsf.c

    r62526 r63566  
    5757{
    5858#if 0
    59     /* @todo enable this soon */
     59    /** @todo enable this soon */
    6060    int rc = get_module(VBOXGUEST_MODULE_NAME, (module_info **)&g_VBoxGuest);
    6161    if (RT_LIKELY(rc == B_OK)
     
    766766
    767767    uint32_t l = *length;
    768     void* other_buffer = malloc(l);  /* @todo map the user memory into kernel space here for efficiency */
     768    void* other_buffer = malloc(l);  /** @todo map the user memory into kernel space here for efficiency */
    769769    int rc = VbglR0SfRead(&g_clientHandle, &volume->map, cookie->handle, pos, &l, other_buffer, false /*fLocked*/);
    770770    memcpy(buffer, other_buffer, l);
     
    787787
    788788    uint32_t l = *length;
    789     void* other_buffer = malloc(l);  /* @todo map the user memory into kernel space here for efficiency */
     789    void* other_buffer = malloc(l);  /** @todo map the user memory into kernel space here for efficiency */
    790790    memcpy(other_buffer, buffer, l);
    791791    int rc = VbglR0SfWrite(&g_clientHandle, &volume->map, cookie->handle, pos, &l, other_buffer, false /*fLocked*/);
     
    899899
    900900
    901 /* @todo move this into the runtime */
     901/** @todo move this into the runtime */
    902902status_t vbox_err_to_haiku_err(int rc)
    903903{
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette