Skip to content

Commit e93eda5

Browse files
committed
minor
1 parent 0c88caa commit e93eda5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bench.lisp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(uiop:define-package #:sento/bench
1+
(uiop:define-package #:sento.bench
22
(:use #:cl)
33
(:import-from #:org.shirakumo.trivial-benchmark
44
#:*default-samplers*
@@ -11,7 +11,7 @@
1111
#:with-gensyms)
1212
(:import-from #:sento.queue
1313
#:queue-full-error))
14-
(in-package #:sento/bench)
14+
(in-package #:sento.bench)
1515

1616

1717
(defun actor-queue-size (a)
@@ -22,10 +22,10 @@
2222

2323

2424
(defun total-queues-size (system)
25-
(+ (loop for actor in (sento.actor-system::%all-actors system :user)
26-
summing (actor-queue-size actor))
27-
(loop for actor in (sento.actor-system::%all-actors system :internal)
28-
summing (actor-queue-size actor))))
25+
(+ (loop :for actor :in (sento.actor-system::%all-actors system :user)
26+
:summing (actor-queue-size actor))
27+
(loop :for actor :in (sento.actor-system::%all-actors system :internal)
28+
:summing (actor-queue-size actor))))
2929

3030

3131
(defvar-unbound *num-processed-messages*

0 commit comments

Comments
 (0)