Trim trailing whitespace (mostly introduced in r313407).
Sponsored by: DARPA / AFRL
This commit is contained in:
parent
371ce0ebc2
commit
3ff519254c
@ -315,7 +315,7 @@ struct thread {
|
||||
} td_state; /* (t) thread state */
|
||||
union {
|
||||
register_t tdu_retval[2];
|
||||
off_t tdu_off;
|
||||
off_t tdu_off;
|
||||
} td_uretoff; /* (k) Syscall aux returns. */
|
||||
#define td_retval td_uretoff.tdu_retval
|
||||
u_int td_cowgen; /* (k) Generation of COW pointers. */
|
||||
@ -619,7 +619,7 @@ struct proc {
|
||||
u_int p_xsig; /* (c) Stop/kill sig. */
|
||||
uint16_t p_elf_machine; /* (x) ELF machine type */
|
||||
uint64_t p_elf_flags; /* (x) ELF flags */
|
||||
|
||||
|
||||
/* End area that is copied on creation. */
|
||||
#define p_endcopy p_elf_flags
|
||||
struct pgrp *p_pgrp; /* (c + e) Pointer to process group. */
|
||||
|
@ -434,7 +434,7 @@ elf_puthdr(int efd, pid_t pid, vm_map_entry_t map, void *hdr, size_t hdrsize,
|
||||
err(1, "Failed to re-read ELF header");
|
||||
else if (cnt != sizeof(binhdr))
|
||||
errx(1, "Failed to re-read ELF header");
|
||||
|
||||
|
||||
ehdr = (Elf_Ehdr *)hdr;
|
||||
|
||||
ehdr->e_ident[EI_MAG0] = ELFMAG0;
|
||||
|
Loading…
Reference in New Issue
Block a user