diff options
author | Lukas Larsson <[email protected]> | 2017-09-04 17:20:07 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2017-09-11 15:20:50 +0200 |
commit | 6eae9b508dc172ca207df6131bfa36e2aaf2333f (patch) | |
tree | a23eda0a1a53d35fc2bb5d866bc09212d4f31ef1 /erts/emulator/beam/erl_process.c | |
parent | 2ae7a0a0fbf33e1fa8f1f35894b6468aa43f451b (diff) | |
download | otp-6eae9b508dc172ca207df6131bfa36e2aaf2333f.tar.gz otp-6eae9b508dc172ca207df6131bfa36e2aaf2333f.tar.bz2 otp-6eae9b508dc172ca207df6131bfa36e2aaf2333f.zip |
Fix unused-functions warnings
Diffstat (limited to 'erts/emulator/beam/erl_process.c')
-rw-r--r-- | erts/emulator/beam/erl_process.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_process.c b/erts/emulator/beam/erl_process.c index 63c838a91d..22d77ccbdc 100644 --- a/erts/emulator/beam/erl_process.c +++ b/erts/emulator/beam/erl_process.c @@ -1597,6 +1597,12 @@ erts_proclist_create(Process *p) return proclist_create(p); } +ErtsProcList * +erts_proclist_copy(ErtsProcList *plp) +{ + return proclist_copy(plp); +} + void erts_proclist_destroy(ErtsProcList *plp) { |