diff options
author | Richard Carlsson <[email protected]> | 2018-04-17 13:28:24 +0200 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2018-05-04 10:22:36 +0200 |
commit | e7a3bf9c385ac6df2209c6f7c92543a3dd7f6497 (patch) | |
tree | 91975afb8062e901666d59dc1ee0dbb3e60b0fe6 /lib/parsetools/src | |
parent | f7fd8127c18f25bc9678bda067d1503a0bc0e3b2 (diff) | |
download | otp-e7a3bf9c385ac6df2209c6f7c92543a3dd7f6497.tar.gz otp-e7a3bf9c385ac6df2209c6f7c92543a3dd7f6497.tar.bz2 otp-e7a3bf9c385ac6df2209c6f7c92543a3dd7f6497.zip |
Move lib:nonl/1 into yecc.erl
Diffstat (limited to 'lib/parsetools/src')
-rw-r--r-- | lib/parsetools/src/yecc.erl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/parsetools/src/yecc.erl b/lib/parsetools/src/yecc.erl index b4e1cfe5e3..fbffd228ea 100644 --- a/lib/parsetools/src/yecc.erl +++ b/lib/parsetools/src/yecc.erl @@ -455,10 +455,14 @@ os_process_size() -> case os:type() of {unix, sunos} -> Size = os:cmd("ps -o vsz -p " ++ os:getpid() ++ " | tail -1"), - list_to_integer(lib:nonl(Size)); + list_to_integer(nonl(Size)); _ -> 0 - end. + end. + +nonl([10]) -> []; +nonl([]) -> []; +nonl([H|T]) -> [H|nonl(T)]. timeit(Name, Fun, St0) -> Time = runtime, |