Changes in / [052dfc3:c0b2a631]
- Location:
- benchmark
- Files:
-
- 1 deleted
- 2 edited
-
Makefile.am (modified) (4 diffs)
-
Makefile.in (modified) (3 diffs)
-
ctxswitch/node_await.js (deleted)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
r052dfc3 rc0b2a631 11 11 ## Created On : Sun May 31 09:08:15 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : T hu Jan 23 12:42:58202014 ## Update Count : 25 313 ## Last Modified On : Tue Jan 21 17:56:31 2020 14 ## Update Count : 250 15 15 ############################################################################### 16 16 … … 89 89 ctxswitch_rust_thread_DURATION = $(ctxswitch_pthread_DURATION) 90 90 ctxswitch_cfa_generator_DURATION = 5000000000 91 ctxswitch_nodejs_await_DURATION = 1000000 # otherwise out of memory92 91 ctxswitch_DURATION = 100000000 93 92 … … 249 248 ctxswitch-python_coroutine.run \ 250 249 ctxswitch-nodejs_coroutine.run \ 251 ctxswitch-nodejs_await.run \252 250 ctxswitch-goroutine_thread.run \ 253 251 ctxswitch-rust_thread.run \ … … 296 294 echo "#!/bin/sh" > a.out 297 295 echo "nodejs $(srcdir)/ctxswitch/node_cor.js" >> a.out 298 chmod a+x a.out299 300 ctxswitch-nodejs_await$(EXEEXT):301 echo "#!/bin/sh" > a.out302 echo "nodejs $(srcdir)/ctxswitch/node_await.js" >> a.out303 296 chmod a+x a.out 304 297 -
benchmark/Makefile.in
r052dfc3 rc0b2a631 426 426 ctxswitch_rust_thread_DURATION = $(ctxswitch_pthread_DURATION) 427 427 ctxswitch_cfa_generator_DURATION = 5000000000 428 ctxswitch_nodejs_await_DURATION = 1000000 # otherwise out of memory429 428 ctxswitch_DURATION = 100000000 430 429 … … 457 456 ctxswitch-cfa_thread2.run ctxswitch-upp_coroutine.run \ 458 457 ctxswitch-upp_thread.run ctxswitch-python_coroutine.run \ 459 ctxswitch-nodejs_coroutine.run ctxswitch- nodejs_await.run \460 ctxswitch- goroutine_thread.run ctxswitch-rust_thread.run \461 ctxswitch- nodejs_coroutine.run ctxswitch-java_thread.run \462 ctxswitch-pthread.run$(am__append_1)458 ctxswitch-nodejs_coroutine.run ctxswitch-goroutine_thread.run \ 459 ctxswitch-rust_thread.run ctxswitch-nodejs_coroutine.run \ 460 ctxswitch-java_thread.run ctxswitch-pthread.run \ 461 $(am__append_1) 463 462 testdir = $(top_srcdir)/tests 464 463 all: all-am … … 940 939 chmod a+x a.out 941 940 942 ctxswitch-nodejs_await$(EXEEXT):943 echo "#!/bin/sh" > a.out944 echo "nodejs $(srcdir)/ctxswitch/node_await.js" >> a.out945 chmod a+x a.out946 947 941 ctxswitch-goroutine_thread$(EXEEXT): 948 942 $(BENCH_V_GOC)go build -o a.out $(srcdir)/ctxswitch/goroutine.go
Note:
See TracChangeset
for help on using the changeset viewer.