rewrap some long lines.

This commit is contained in:
Poul-Henning Kamp 1996-02-13 14:16:36 +00:00
parent 01a3e1a590
commit c9c37b27d1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14087

View File

@ -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);