Searched refs:notes (Results 1 - 1 of 1) sorted by relevance

/haiku/src/kits/debugger/elf/
H A DCoreFile.cpp325 uint8* notes = (uint8*)malloc(notesSize); local
326 if (notes == NULL)
328 MemoryDeleter notesDeleter(notes);
330 ssize_t bytesRead = pread(fElfFile.FD(), notes, notesSize,
333 WARNING("Failed to read notes segment: %s\n", strerror(errno));
337 WARNING("Failed to read whole notes segment\n");
341 // iterate through notes
345 WARNING("Remaining bytes in notes segment too short for header\n");
349 const Nhdr* header = (const Nhdr*)notes;
354 notes
[all...]

Completed in 28 milliseconds