-module(crew_ffi). -export([identity/1, scheduler_count/0, system_time/0]). identity(X) -> X. scheduler_count() -> erlang:system_info(schedulers_online). system_time() -> os:system_time(millisecond).