1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE cref SYSTEM "cref.dtd">
<cref>
<header>
<copyright>
<year>1998</year><year>2016</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</legalnotice>
<title>erl_global</title>
<prepared>Gordon Beaton</prepared>
<responsible>Gordon Beaton</responsible>
<docno></docno>
<approved>Gordon Beaton</approved>
<checked>Gordon Beaton</checked>
<date>1998-07-03</date>
<rev>A</rev>
<file>erl_global.xml</file>
</header>
<lib>erl_global</lib>
<libsummary>Access globally registered names.</libsummary>
<description>
<p>This module provides support for registering, looking
up, and unregistering names in the <c>global</c> module.
For more information, see
<seealso marker="kernel:global"><c>kernel:global</c></seealso>.</p>
<p>Notice that the functions below perform an RPC using an open file
descriptor provided by the caller. This file descriptor must
not be used for other traffic during the global operation, as the
function can then receive unexpected data and fail.</p>
</description>
<funcs>
<func>
<name><ret>char **</ret><nametext>erl_global_names(fd,count)</nametext></name>
<fsummary>Obtain list of global names.</fsummary>
<type>
<v>int fd;</v>
<v>int *count;</v>
</type>
<desc>
<p>Retrieves a list of all known global names.</p>
<list type="bulleted">
<item><c>fd</c> is an open descriptor to an Erlang
connection.</item>
<item><c>count</c> is the address of an integer, or
<c>NULL</c>. If <c>count</c> is not <c>NULL</c>, it is
set by the function to the number of names found.</item>
</list>
<p>On success, the function returns an array of strings, each
containing a single registered name, and sets
<c>count</c> to
the number of names found. The array is terminated
by a single <c>NULL</c> pointer. On failure, the function returns
<c>NULL</c> and <c>count</c> is not modified.</p>
<note>
<p>It is the caller's responsibility to free the array
afterwards. It has been allocated by the function with a
single call to <c>malloc()</c>, so a single
<c>free()</c> is all that is necessary.</p>
</note>
</desc>
</func>
<func>
<name><ret>int</ret><nametext>erl_global_register(fd,name,pid)</nametext></name>
<fsummary>Register a name in global.</fsummary>
<type>
<v>int fd;</v>
<v>const char *name;</v>
<v>ETERM *pid;</v>
</type>
<desc>
<p>Registers a name in <c>global</c>.</p>
<list type="bulleted">
<item><c>fd</c> is an open descriptor to an Erlang
connection.</item>
<item><c>name</c> is the name to register in
<c>global</c>.</item>
<item><c>pid</c> is the pid that is to be associated with
<c>name</c>. This value is returned by <c>global</c>
when processes request the location of <c>name</c>.
</item>
</list>
<p>Returns <c>0</c> on success, otherwise <c>-1</c>.</p>
</desc>
</func>
<func>
<name><ret>int</ret><nametext>erl_global_unregister(fd,name)</nametext></name>
<fsummary>Unregister a name from global.</fsummary>
<type>
<v>int fd;</v>
<v>const char *name;</v>
</type>
<desc>
<p>Unregisters a name from <c>global</c>.</p>
<list type="bulleted">
<item><c>fd</c> is an open descriptor to an Erlang
connection.</item>
<item><c>name</c> is the name to unregister from
<c>global</c>.</item>
</list>
<p>Returns <c>0</c> on success, otherwise <c>-1</c>.</p>
</desc>
</func>
<func>
<name><ret>ETERM *</ret><nametext>erl_global_whereis(fd,name,node)</nametext></name>
<fsummary>Look up a name in global.</fsummary>
<type>
<v>int fd;</v>
<v>const char *name;</v>
<v>char *node;</v>
</type>
<desc>
<p>Looks up a name in <c>global</c>.</p>
<list type="bulleted">
<item><c>fd</c> is an open descriptor to an Erlang
connection.</item>
<item><c>name</c> is the name that is to be looked up in
<c>global</c>.</item>
</list>
<p>If <c>node</c> is not <c>NULL</c>, it is a pointer to a
buffer where the function can fill in the name of the node where
<c>name</c> is found. <c>node</c> can be
passed directly to <c>erl_connect()</c> if necessary.</p>
<p>On success, the function returns an Erlang pid containing the address
of the specified name, and the node is initialized to
the node name where <c>name</c> is found. On failure,
<c>NULL</c> is returned and <c>node</c> is not
modified.</p>
</desc>
</func>
</funcs>
</cref>
|