| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|\
| |
| |
| |
| | |
* dgud/observer/test-cuddle:
Make stop observer more async
|
| |
| |
| |
| |
| | |
Some calls where not async during stop, which could lead to deadlock
when closing observer.
|
|/
|
|
|
|
|
|
| |
function `dbg:stop_clear/1` is not documented in the API but was kept
for compatibility reasons. in this commit we make a step forward to
deprecating its use such that it will be eventually removed.
closes GH-6903.
|
|
|
|
| |
This reverts commit d4e4511b19f4126d9271a6e3a8fa2eb716da7e85.
|
| |
|
|
|
|
| |
This reverts commit 1cf126f91eb533783409da95b117207d8c13d9aa.
|
| |
|
| |
|
|
|
|
| |
This reverts commit 587341d994f91af5b30483ee9434e932e3d7b802.
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
Observer Improvements
OTP-18430
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|/
|
| |
Fix typo: `unkonwn` -> `unknown`
|
|\
| |
| |
| |
| |
| |
| | |
* maint:
Updated OTP version
Prepare release
Update copyright year
|
| | |
|
| | |
|
|/ |
|
|\ |
|
| |
| |
| |
| | |
OTP-18339
|
| |
| |
| |
| | |
OTP-18339
|
| |
| |
| |
| | |
OTP-18339
|
| |
| |
| |
| |
| | |
The 'basic' test case needed som tweaking to run cleanly
when the observer_SUITE was run "on its own".
|
| |
| |
| |
| |
| |
| | |
At the end of test case 'basic' (end_per_testcase),
try ensure that *if* test case failed, that observer
is not running.
|
| | |
|
|\ \
| |/
|/|
| | |
Improve observer nodes list menu
OTP-18269
|
| |
| |
| |
| |
| |
| |
| |
| | |
- Always include current node. If dist_listen is false it won't show up
in epdm names
- If the default epmd module erl_epmd is used and erl_epmd_port is set
to `DistPort' then it is only possible to connect to the node listening
on DistPort (if any), so exclude other nodes registered in EPMD
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
observer_sys_wx.erl: fix grammar
|
| |/ |
|
|\ \
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 'deterministic-build' of https://github.com/TD5/otp:
make: Allow OTP to be built deterministically
compiler: Make test_lib robust to +deterministic
compiler: Make compiler forward +determinsitic flag to epp
compiler: Make yecc respect +deterministic
compiler: Make leex respect +deterministic
compiler: Make asn1ct_gen respect +deterministic
compiler: Make EPP respect +deterministic
OTP-18165
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add a --enable-deterministic-build to the configure script,
which sets ERL_DETERMINISTIC=yes throughout the relevant
Makefiles, which then invoke the relevant build stages with the
+deterministic option.
This addresses absolute paths being included in generated .erl files
and compiled .beam files that resulted in builds from different source
directories generating different artefacts (which is a component of the
issue in erlang#4482).
I think it would make sense to make this the default at some stage, but
I've put the change behind a flag for now to decouple
making deterministic OTP builds possible from making them the default.
Having +deterministic set results in compiler options being
removed from the module info for modules where this options was used.
This may have other implications for users of OTP.
For tests themselves, +determinism is not set, since many test cases
depend on accessing the test module's compilation options, or other
features not available in deterministic mode, in order to configure
themselves. For tests of the determinism feature specifically,
+deterministic must be explicitly passed to the compiler within the
relevant test cases.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The current code does the conversion from bytes to kibibyte (KiB),
mebibyte(MiB) and gibibyte(GiB), that is dividing by 1024.
However, when the units are printed, the units are in kilobytes (KB),
megabytes (MB) and gigabytes (GB). This commit changes the unit printed
to KiB, MiB and GiB.
|