Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. Action my_action; /**< Action requested to be performed. */
  2. ucontext_t my_c_call_point; /**< Point to execute actual C dispatch (subtend stack) */
  3. ucontext_t my_dispatch_point; /**< Point of return to dispatch code (vm stack) */
  4. Message* my_message; /**< Message representing this call. */
  5. NativeMethod* my_method; /**< Function-like object that actually implements the method. */
  6. HandleStorage my_handles; /**< Object handles for this call. */
  7. Object* my_return_value; /**< Return value from the call. */
  8. VM* my_state; /**< VM state for this invocation. */
  9. Task* my_task; /**< Task in which we are running. */
  10.  
  11.  
  12. /** Action requested to be performed. */
  13. Action my_action;
  14. /** Point to execute actual C dispatch (subtend stack) */
  15. ucontext_t my_c_call_point;
  16. /** Point of return to dispatch code (vm stack) */
  17. ucontext_t my_dispatch_point;
  18. /** Message representing this call. */
  19. Message* my_message;
  20. /** Function-like object that actually implements the method. */
  21. NativeMethod* my_method;
  22. /** Object handles for this call. */
  23. HandleStorage my_handles;
  24. /** Return value from the call. */
  25. Object* my_return_value;
  26. /** VM state for this invocation. */
  27. VM* my_state;
  28. /** Task in which we are running. */
  29. Task* my_task;
Add Comment
Please, Sign In to add comment