Lines Matching full:notes
320 struct memelfnote notes[3]; in elf_kcore_store_hdr() local
377 * Set up the notes in similar form to SVR4 core dumps made in elf_kcore_store_hdr()
383 notes[0].name = CORE_STR; in elf_kcore_store_hdr()
384 notes[0].type = NT_PRSTATUS; in elf_kcore_store_hdr()
385 notes[0].datasz = sizeof(struct elf_prstatus); in elf_kcore_store_hdr()
386 notes[0].data = &prstatus; in elf_kcore_store_hdr()
390 nhdr->p_filesz = notesize(¬es[0]); in elf_kcore_store_hdr()
391 bufp = storenote(¬es[0], bufp); in elf_kcore_store_hdr()
394 notes[1].name = CORE_STR; in elf_kcore_store_hdr()
395 notes[1].type = NT_PRPSINFO; in elf_kcore_store_hdr()
396 notes[1].datasz = sizeof(struct elf_prpsinfo); in elf_kcore_store_hdr()
397 notes[1].data = &prpsinfo; in elf_kcore_store_hdr()
407 nhdr->p_filesz += notesize(¬es[1]); in elf_kcore_store_hdr()
408 bufp = storenote(¬es[1], bufp); in elf_kcore_store_hdr()
411 notes[2].name = CORE_STR; in elf_kcore_store_hdr()
412 notes[2].type = NT_TASKSTRUCT; in elf_kcore_store_hdr()
413 notes[2].datasz = sizeof(struct task_struct); in elf_kcore_store_hdr()
414 notes[2].data = current; in elf_kcore_store_hdr()
416 nhdr->p_filesz += notesize(¬es[2]); in elf_kcore_store_hdr()
417 bufp = storenote(¬es[2], bufp); in elf_kcore_store_hdr()