You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compiler version (gcc -v/g++ -v/clang -v/clang++ -v): 5.4
Description of the problem
The loader factory used by default in DceManagerHelper is CoojaLoaderFactory, but an option exists to use DlmLoaderFactory. However, the latter doesn't seem to work any more. It is commented out in a number of examples:
$ ./waf --command-template="gdb %s" --run dce-linux
...
(gdb) handle SIGUSR1 nostop
Signal Stop Print Pass to program Description
SIGUSR1 No Yes Yes User defined signal 1
(gdb) r
Program received signal SIGUSR1, User defined signal 1.
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff19b6bfe in ?? ()
(gdb) up
#1 0x00007ffff7ac2f33 in ns3::DlmLoader::DlmLoader (this=0x720540, argc=0,
argv=0x0, envp=0x0) at ../model/dlm-loader-factory.cc:59
59 m_lmid = dlLmidNew (argc, argv, envp);
(gdb)
#2 0x00007ffff7ac4116 in ns3::DlmLoaderFactory::Create (this=0x718fc0,
argc=0, argv=0x0, envp=0x0) at ../model/dlm-loader-factory.cc:143
143 DlmLoader *loader = new DlmLoader (argc, argv, envp);
The text was updated successfully, but these errors were encountered:
Description of the problem
The loader factory used by default in DceManagerHelper is CoojaLoaderFactory, but an option exists to use DlmLoaderFactory. However, the latter doesn't seem to work any more. It is commented out in a number of examples:
To reproduce the problem, uncomment this line in any one of the example programs that has been commented out (e.g. dce-linux.cc):
Then run the program through gdb:
The text was updated successfully, but these errors were encountered: