* shm.cc: Whitespace fixes.

This commit is contained in:
Corinna Vinschen 2004-07-20 16:08:49 +00:00
parent 96e949deaa
commit 7d9c458d8f
2 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2004-07-20 Corinna Vinschen <corinna@vinschen.de>
* shm.cc: Whitespace fixes.
2004-07-20 Christopher Faylor <cgf@timesys.com> 2004-07-20 Christopher Faylor <cgf@timesys.com>
* Makefile.in (clean): Remove cygwin.def since it is autogenerated. * Makefile.in (clean): Remove cygwin.def since it is autogenerated.

View File

@ -94,24 +94,24 @@ client_request_shm::client_request_shm (proc *p1)
/* List of shmid's with file mapping HANDLE and size, returned by shmget. */ /* List of shmid's with file mapping HANDLE and size, returned by shmget. */
struct shm_shmid_list { struct shm_shmid_list {
SLIST_ENTRY(shm_shmid_list) ssh_next; SLIST_ENTRY (shm_shmid_list) ssh_next;
int shmid; int shmid;
vm_object_t hdl; vm_object_t hdl;
size_t size; size_t size;
}; };
static SLIST_HEAD(, shm_shmid_list) ssh_list; static SLIST_HEAD (, shm_shmid_list) ssh_list;
/* List of attached mappings, as returned by shmat. */ /* List of attached mappings, as returned by shmat. */
struct shm_attached_list { struct shm_attached_list {
SLIST_ENTRY(shm_attached_list) sph_next; SLIST_ENTRY (shm_attached_list) sph_next;
vm_object_t ptr; vm_object_t ptr;
vm_object_t hdl; vm_object_t hdl;
size_t size; size_t size;
int access; int access;
}; };
static SLIST_HEAD(, shm_attached_list) sph_list; static SLIST_HEAD (, shm_attached_list) sph_list;
int __stdcall int __stdcall
fixup_shms_after_fork () fixup_shms_after_fork ()
@ -132,8 +132,8 @@ fixup_shms_after_fork ()
/* Remove map from list... */ /* Remove map from list... */
SLIST_FOREACH (sph_entry, &sph_list, sph_next) SLIST_FOREACH (sph_entry, &sph_list, sph_next)
{ {
vm_object_t ptr = MapViewOfFileEx(sph_entry->hdl, sph_entry->access, vm_object_t ptr = MapViewOfFileEx (sph_entry->hdl, sph_entry->access,
0, 0, sph_entry->size, sph_entry->ptr); 0, 0, sph_entry->size, sph_entry->ptr);
if (ptr != sph_entry->ptr) if (ptr != sph_entry->ptr)
api_fatal ("MapViewOfFileEx (%p), %E. Terminating.", sph_entry->ptr); api_fatal ("MapViewOfFileEx (%p), %E. Terminating.", sph_entry->ptr);
} }
@ -204,8 +204,8 @@ shmat (int shmid, const void *shmaddr, int shmflg)
return (void *) -1; return (void *) -1;
} }
DWORD access = (shmflg & SHM_RDONLY) ? FILE_MAP_READ : FILE_MAP_WRITE; DWORD access = (shmflg & SHM_RDONLY) ? FILE_MAP_READ : FILE_MAP_WRITE;
vm_object_t ptr = MapViewOfFileEx(ssh_entry->hdl, access, 0, 0, vm_object_t ptr = MapViewOfFileEx (ssh_entry->hdl, access, 0, 0,
ssh_entry->size, attach_va); ssh_entry->size, attach_va);
if (!ptr) if (!ptr)
{ {
__seterrno (); __seterrno ();