rewrap some long lines.
This commit is contained in:
parent
ec263309a1
commit
deef3e4795
@ -6,7 +6,7 @@
|
||||
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
||||
* ----------------------------------------------------------------------------
|
||||
*
|
||||
* $Id: imgact_gzip.c,v 1.17 1995/12/07 12:46:35 davidg Exp $
|
||||
* $Id: imgact_gzip.c,v 1.18 1996/01/19 03:57:56 dyson Exp $
|
||||
*
|
||||
* This module handles execution of a.out files which have been run through
|
||||
* "gzip". This saves diskspace, but wastes cpu-cycles and VM.
|
||||
@ -250,12 +250,14 @@ do_aout_hdr(struct imgact_gzip * gz)
|
||||
}
|
||||
if (gz->bss_size != 0) {
|
||||
/*
|
||||
* Allocate demand-zeroed area for uninitialized data "bss" = 'block
|
||||
* started by symbol' - named after the IBM 7090 instruction of the
|
||||
* same name.
|
||||
* Allocate demand-zeroed area for uninitialized data.
|
||||
* "bss" = 'block started by symbol' - named after the
|
||||
* IBM 7090 instruction of the same name.
|
||||
*/
|
||||
vmaddr = gz->virtual_offset + gz->a_out.a_text + gz->a_out.a_data;
|
||||
error = vm_map_find(&vmspace->vm_map, NULL, 0, &vmaddr, gz->bss_size, FALSE, VM_PROT_ALL, VM_PROT_ALL, 0);
|
||||
vmaddr = gz->virtual_offset + gz->a_out.a_text +
|
||||
gz->a_out.a_data;
|
||||
error = vm_map_find(&vmspace->vm_map, NULL, 0, &vmaddr,
|
||||
gz->bss_size, FALSE, VM_PROT_ALL, VM_PROT_ALL, 0);
|
||||
if (error) {
|
||||
gz->where = __LINE__;
|
||||
return (error);
|
||||
|
Loading…
x
Reference in New Issue
Block a user