Segfault.cpp
Go to the documentation of this file.
1
2
#include "
Segfault.h
"
3
4
namespace
armarx::skills::provider
5
{
6
SegfaultSkill::SegfaultSkill
() :
SimpleSkill
(GetSkillDescription())
7
{
8
}
9
10
SkillDescription
11
SegfaultSkill::GetSkillDescription
()
12
{
13
return
SkillDescription
{
14
.
skillId
=
skills::SkillID
{.
skillName
=
"Segfault"
},
15
.description =
16
"This skill segfaults while executing. This will kill (Signal 11) the Provider to "
17
"test the stability of the GUI and other components in case of a skill issue."
,
18
19
.rootProfileDefaults =
armarx::aron::make_dict
(),
20
.timeout =
armarx::core::time::Duration::MilliSeconds
(100)};
21
}
22
23
Skill::MainResult
24
SegfaultSkill::main
(
const
MainInput& in)
25
{
26
int
* number =
nullptr
;
27
(*number)++;
28
29
ARMARX_IMPORTANT
<<
"If you can read this in the log, something is really wrong with the "
30
"SegfaultSkill. It should have segfaulted by now..."
;
31
return
{
TerminatedSkillStatus::Succeeded
,
nullptr
};
32
}
33
}
// namespace armarx::skills::provider
armarx::skills::TerminatedSkillStatus::Succeeded
@ Succeeded
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition:
Logging.h:190
armarx::aron::make_dict
aron::data::DictPtr make_dict(_Args &&... args)
Definition:
Dict.h:107
armarx::skills::SkillID::skillName
std::string skillName
Definition:
SkillID.h:41
armarx::skills::SkillDescription
Definition:
SkillDescription.h:17
armarx::skills::provider::SegfaultSkill::SegfaultSkill
SegfaultSkill()
Definition:
Segfault.cpp:6
armarx::skills::SkillDescription::skillId
SkillID skillId
Definition:
SkillDescription.h:19
Segfault.h
armarx::skills::provider
Definition:
BusyWaiting.cpp:6
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition:
Skill.h:39
armarx::skills::SimpleSkill
Definition:
SimpleSkill.h:9
armarx::skills::provider::SegfaultSkill::GetSkillDescription
static SkillDescription GetSkillDescription()
Definition:
Segfault.cpp:11
armarx::skills::SimpleSkill::main
MainResult main() final
Override this method with the actual implementation. The callback is for status updates to the callin...
Definition:
SimpleSkill.cpp:15
armarx::skills::SkillID
Definition:
SkillID.h:14
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition:
Duration.cpp:48
RobotAPI
components
skills
SkillProviderExample
Segfault.cpp
Generated on Sat Mar 29 2025 09:17:26 for armarx_documentation by
1.8.17