Changeset 2777

Show
Ignore:
Timestamp:
08/27/08 12:38:07 (3 months ago)
Author:
dhozac
Message:

This is going to be handled in the kernel.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/syscall_ctxcreate.c

    r2744 r2777  
    3737#endif 
    3838 
    39 #if defined(VC_ENABLE_API_V23) 
    40 #  include "syscall_ctxcreate-v23.hc" 
    41 #endif 
    42  
    4339#if defined(VC_ENABLE_API_V13) || defined(VC_ENABLE_API_V21) 
    4440xid_t 
    4541vc_ctx_create(xid_t xid, struct vc_ctx_flags *flags) 
    4642{ 
    47   CALL_VC(CALL_VC_V23P(vc_ctx_create, xid, flags), 
    48           CALL_VC_V21 (vc_ctx_create, xid, flags), 
     43  CALL_VC(CALL_VC_V21 (vc_ctx_create, xid, flags), 
    4944          CALL_VC_V13A(vc_ctx_create, xid, flags)); 
    5045} 
  • trunk/lib/syscall_ctxmigrate.c

    r2744 r2777  
    3737#endif 
    3838 
    39 #if defined(VC_ENABLE_API_V23) 
    40 #  include "syscall_ctxmigrate-v23.hc" 
    41 #endif 
    42  
    4339#if defined(VC_ENABLE_API_V13) || defined(VC_ENABLE_API_V21) 
    4440int 
    4541vc_ctx_migrate(xid_t xid, uint_least64_t flags) 
    4642{ 
    47   CALL_VC(CALL_VC_V23P  (vc_ctx_migrate, xid, flags), 
    48           CALL_VC_SPACES(vc_ctx_migrate, xid, flags), 
     43  CALL_VC(CALL_VC_SPACES(vc_ctx_migrate, xid, flags), 
    4944          CALL_VC_V13A  (vc_ctx_migrate, xid)); 
    5045}