diff --git a/doc/api/os.md b/doc/api/os.md
index 28eff6a13f0..1bef5c55016 100644
--- a/doc/api/os.md
+++ b/doc/api/os.md
@@ -1170,6 +1170,43 @@ The following error codes are specific to the Windows operating system:
+### dlopen Constants
+
+If available on the operating system, the following constants
+are exported in `os.constants.dlopen`. See dlopen(3) for detailed
+information.
+
+
+
+ Constant |
+ Description |
+
+
+ RTLD_LAZY |
+ Perform lazy binding. Node.js sets this flag by default. |
+
+
+ RTLD_NOW |
+ Resolve all undefined symbols in the library before dlopen(3)
+ returns. |
+
+
+ RTLD_GLOBAL |
+ Symbols defined by the library will be made available for symbol
+ resolution of subsequently loaded libraries. |
+
+
+ RTLD_LOCAL |
+ The converse of RTLD_GLOBAL. This is the default behavior if neither
+ flag is specified. |
+
+
+ RTLD_DEEPBIND |
+ Make a self-contained library use its own symbols in preference to
+ symbols from previously loaded libraries. |
+
+
+
### libuv Constants
diff --git a/doc/api/process.md b/doc/api/process.md
index e24bf19d9d2..82edcf9436c 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -638,6 +638,48 @@ process's [`ChildProcess.disconnect()`][].
If the Node.js process was not spawned with an IPC channel,
`process.disconnect()` will be `undefined`.
+## process.dlopen(module, filename[, flags])
+
+
+* `module` {Object}
+* `filename` {string}
+* `flags` {os.constants.dlopen}. Defaults to `os.constants.dlopen.RTLD_LAZY`.
+
+The `process.dlopen()` method allows to dynamically load shared
+objects. It is primarily used by `require()` to load
+C++ Addons, and should not be used directly, except in special
+cases. In other words, [`require()`][] should be preferred over
+`process.dlopen()`, unless there are specific reasons.
+
+The `flags` argument is an integer that allows to specify dlopen
+behavior. See the [`os.constants.dlopen`][] documentation for details.
+
+If there are specific reasons to use `process.dlopen()` (for instance,
+to specify dlopen flags), it's often useful to use [`require.resolve()`][]
+to look up the module's path.
+
+*Note*: An important drawback when calling `process.dlopen()` is that the
+`module` instance must be passed. Functions exported by the C++ Addon will
+be accessible via `module.exports`.
+
+The example below shows how to load a C++ Addon, named as `binding`,
+that exports a `foo` function. All the symbols will be loaded before
+the call returns, by passing the `RTLD_NOW` constant. In this example
+the constant is assumed to be available.
+
+```js
+const os = require('os');
+process.dlopen(module, require.resolve('binding'),
+ os.constants.dlopen.RTLD_NOW);
+module.exports.foo();
+```
+
## process.emitWarning(warning[, options])