Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
current_counterexample.eqc
_build
.rebar3
ebin/*.beam
eqc/.eqc-info
eqc/*.beam
*~
Expand Down
2 changes: 1 addition & 1 deletion ebin/gproc.app
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{registered,[]},
{included_applications,[]},
{applications,[stdlib,kernel]},
{vsn,"1.1.0"},
{vsn,"1.2.0"},
{modules,[gproc_eqc_tests,gproc,gproc_app,gproc_bcast,
gproc_dist,gproc_info,gproc_init,gproc_lib,
gproc_monitor,gproc_pool,gproc_ps,gproc_pt,gproc_sup,
Expand Down
1 change: 1 addition & 0 deletions src/gproc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
%% @end

-module(gproc).
-vsn("1.2.0").
-behaviour(gen_server).

-export([start_link/0,
Expand Down
1 change: 1 addition & 0 deletions src/gproc_app.erl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
%%%----------------------------------------------------------------------

-module(gproc_app).
-vsn("1.2.0").

-behaviour(application).

Expand Down
1 change: 1 addition & 0 deletions src/gproc_bcast.erl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
%% @end

-module(gproc_bcast).
-vsn("1.2.0").
-behaviour(gen_server).

-export([start_link/0,
Expand Down
1 change: 1 addition & 0 deletions src/gproc_dist.erl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
%% <p>For a detailed description, see gproc/doc/erlang07-wiger.pdf.</p>
%% @end
-module(gproc_dist).
-vsn("1.2.0").

%% -behaviour(gen_leader). % to avoid unnecessary warnings

Expand Down
1 change: 1 addition & 0 deletions src/gproc_info.erl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
%% @author Ulf Wiger <ulf@wiger.net>
%%
-module(gproc_info).
-vsn("1.2.0").

-export([i/0]).

Expand Down
1 change: 1 addition & 0 deletions src/gproc_init.erl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
%%%----------------------------------------------------------------------

-module(gproc_init).
-vsn("1.2.0").

%% API
-export([
Expand Down
1 change: 1 addition & 0 deletions src/gproc_lib.erl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
%% <p>For a detailed description, see gproc/doc/erlang07-wiger.pdf.</p>
%% @end
-module(gproc_lib).
-vsn("1.2.0").

-export([await/3,
do_set_counter_value/3,
Expand Down
1 change: 1 addition & 0 deletions src/gproc_monitor.erl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
%% When a process subscribes to notifications for a given name, a message
%% will be sent each time that name is registered
-module(gproc_monitor).
-vsn("1.2.0").

-behaviour(gen_server).

Expand Down
1 change: 1 addition & 0 deletions src/gproc_pool.erl
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
%% jobs will not exceed the size of the pool.
%% @end
-module(gproc_pool).
-vsn("1.2.0").
-behavior(gen_server).

%% gproc round-robin name lookup
Expand Down
1 change: 1 addition & 0 deletions src/gproc_ps.erl
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
%% @type status() = 1 | 0.
%% @end
-module(gproc_ps).
-vsn("1.2.0").

-export([subscribe/2,
subscribe_cond/3,
Expand Down
1 change: 1 addition & 0 deletions src/gproc_pt.erl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
%% @end
%%
-module(gproc_pt).
-vsn("1.2.0").

-export([parse_transform/2]).

Expand Down
1 change: 1 addition & 0 deletions src/gproc_sup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
%%----------------------------------------------------------------------

-module(gproc_sup).
-vsn("1.2.0").

-behaviour(supervisor).

Expand Down
4 changes: 2 additions & 2 deletions zomp.meta
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{name,"gproc"}.
{type,app}.
{modules,[]}.
{prefix,"gproc"}.
{author,"Ulf Wiger"}.
{prefix,"gproc"}.
{desc,"Extended process registry for Erlang"}.
{package_id,{"uwiger","gproc",{1,1,0}}}.
{package_id,{"uwiger","gproc",{1,2,0}}}.
{deps,[]}.
{key_name,none}.
{a_email,"ulf@wiger.net"}.
Expand Down
Loading