| 1822 | } |
| 1823 | |
| 1824 | EcEntryBase::EcEntryBase(const char* file, unsigned line, const char* descr) |
| 1825 | : _file(file), _line(line), _descr(descr) |
| 1826 | { |
| 1827 | EcEntryBase*& ec_head = get_thread_ec_head_ref(); |
| 1828 | _previous = ec_head; |
| 1829 | ec_head = this; |
| 1830 | } |
| 1831 | |
| 1832 | EcEntryBase::~EcEntryBase() |
| 1833 | { |
nothing calls this directly
no outgoing calls
no test coverage detected