nested-vm -> spawn-vm

This commit is contained in:
Tony Garnock-Jones 2013-06-07 18:03:43 -04:00
parent e8a7c253dd
commit e755c473d1
4 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#lang marketplace
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(nested-vm
(spawn-vm
(at-meta-level
(observe-publishers (tcp-channel ? (tcp-listener 5999) ?)
(match-conversation (tcp-channel them us _)

View File

@ -3,7 +3,7 @@
(require "../support/debug.rkt")
(debug
(nested-vm
(spawn-vm
(at-meta-level
(observe-publishers (tcp-channel ? (tcp-listener 5999) ?)
(match-conversation (tcp-channel them us _)

View File

@ -28,7 +28,7 @@
name-process
yield:
at-meta-level:
nested-vm:
spawn-vm:
ground-vm:)
;; A fresh unification variable, as identifier-syntax.
@ -88,7 +88,7 @@
[(_ State preaction ...)
#'(list ((inst core:at-meta-level State) preaction) ...)])))
(define-syntax nested-vm:
(define-syntax spawn-vm:
(lambda (stx)
(syntax-parse stx
[(_ (~literal :) ParentState

View File

@ -26,7 +26,7 @@
name-process
yield
at-meta-level
nested-vm
spawn-vm
ground-vm)
(define-syntax-rule (transition/no-state action ...)
@ -70,7 +70,7 @@
[(cons preaction '()) (core:at-meta-level preaction)]
[_ (map core:at-meta-level preactions)]))
(define-syntax nested-vm
(define-syntax spawn-vm
(lambda (stx)
(syntax-parse stx
[(_ (~or (~optional (~seq #:vm-pid vm-pid) #:defaults ([vm-pid #'p0])