Skip to content

Instantly share code, notes, and snippets.

@binarytemple
Forked from kellymclaughlin/gist:3834437
Created July 11, 2014 08:33
Show Gist options
  • Save binarytemple/ef759b313ca94e88db42 to your computer and use it in GitHub Desktop.
Save binarytemple/ef759b313ca94e88db42 to your computer and use it in GitHub Desktop.
%% Get current number of online schedulers
Schedulers = erlang:system_info(schedulers_online).
%% Reduce number online to 1
erlang:system_flag(schedulers_online, 1).
%% Restore to original number of online schedulers
erlang:system_flag(schedulers_online, Schedulers).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment