erl_global
C Library
erl_global
Library Summary
Access globally registered names.
Description
The support for VxWorks is deprecated as of OTP 22, and will be removed in OTP 23.
The old legacy erl_interface library (functions with prefix erl_) is deprecated as of OTP 22, and will be removed in OTP 23. This does not apply to the ei library. Reasonably new gcc compilers will issue deprecation warnings. In order to disable these warnings, define the macro EI_NO_DEPR_WARN.
This module provides support for registering, looking up, and unregistering names in the global module. For more information, see kernel:global.
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.
Exports
| char **erl_global_names( | 
Types
Retrieves a list of all known global names.
-  fdis an open descriptor to an Erlang connection.
-  countis the address of an integer, orNULL. Ifcountis notNULL, it is set by the function to the number of names found.
On success, the function returns an array of strings, each containing a single registered name, and sets count to the number of names found. The array is terminated by a single NULL pointer. On failure, the function returns NULL and count is not modified.
It is the caller's responsibility to free the array afterwards. It has been allocated by the function with a single call to malloc(), so a single free() is all that is necessary.
| int erl_global_register( | 
Types
Registers a name in global.
-  fdis an open descriptor to an Erlang connection.
-  nameis the name to register inglobal.
-  pidis the pid that is to be associated withname. This value is returned byglobalwhen processes request the location ofname.
Returns 0 on success, otherwise -1.
| int erl_global_unregister( | 
Types
Unregisters a name from global.
-  fdis an open descriptor to an Erlang connection.
-  nameis the name to unregister fromglobal.
Returns 0 on success, otherwise -1.
| ETERM *erl_global_whereis( | 
Types
Looks up a name in global.
-  fdis an open descriptor to an Erlang connection.
-  nameis the name that is to be looked up inglobal.
If node is not NULL, it is a pointer to a buffer where the function can fill in the name of the node where name is found. node can be passed directly to erl_connect() if necessary.
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 name is found. On failure, NULL is returned and node is not modified.
    © 2010–2020 Ericsson AB
Licensed under the Apache License, Version 2.0.