File: utils.erl

package info (click to toggle)
erlang-bitcask 2.0.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,612 kB
  • sloc: erlang: 7,929; ansic: 2,954; makefile: 229; exp: 86; sh: 14
file content (17 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%%% File        : utils.erl
%%% Author      : Ulf Norell
%%% Description : Contains some functions that should be run without being
%%%               PULSE instrumented.
%%% Created     : 21 Mar 2012 by Ulf Norell
-module(utils).

-compile(export_all).

whereis(Name) ->
  erlang:whereis(Name).

unregister(Name) ->
  erlang:unregister(Name).

exit(Reason) ->
  erlang:exit(Reason).