diff options
| author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-07-20 21:19:26 +0200 |
|---|---|---|
| committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-07-20 21:19:26 +0200 |
| commit | 89b60fd03ae088234c04f5e4a715d1138c7823f0 (patch) | |
| tree | 5b0e53b8b37477a9ae159a781a3909a9479cd16e /debian/patches/upstreamme0004-ipc-space-inline-reference-counting.patch | |
| parent | ca0a64fdb99f253a02439a20a4f90a70acf7b5c8 (diff) | |
add patch series
Diffstat (limited to 'debian/patches/upstreamme0004-ipc-space-inline-reference-counting.patch')
| -rw-r--r-- | debian/patches/upstreamme0004-ipc-space-inline-reference-counting.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/patches/upstreamme0004-ipc-space-inline-reference-counting.patch b/debian/patches/upstreamme0004-ipc-space-inline-reference-counting.patch new file mode 100644 index 0000000..fe6ae5f --- /dev/null +++ b/debian/patches/upstreamme0004-ipc-space-inline-reference-counting.patch @@ -0,0 +1,28 @@ +From 48c553a7c0d4cb629ad8198e501959e3e7592309 Mon Sep 17 00:00:00 2001 +From: Justus Winter <4winter@informatik.uni-hamburg.de> +Date: Mon, 20 Jul 2015 21:16:27 +0200 +Subject: [PATCH gnumach 4/4] ipc/space: inline reference counting + +* ipc/ipc_space.h (is_{reference,release}): Use the macro variant. +--- + ipc/ipc_space.h | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ipc/ipc_space.h b/ipc/ipc_space.h +index 73c90ef..a2aac40 100644 +--- a/ipc/ipc_space.h ++++ b/ipc/ipc_space.h +@@ -121,8 +121,8 @@ MACRO_END + extern void ipc_space_reference(struct ipc_space *space); + extern void ipc_space_release(struct ipc_space *space); + +-#define is_reference(is) ipc_space_reference(is) +-#define is_release(is) ipc_space_release(is) ++#define is_reference(is) ipc_space_reference_macro(is) ++#define is_release(is) ipc_space_release_macro(is) + + kern_return_t ipc_space_create(ipc_space_t *); + kern_return_t ipc_space_create_special(struct ipc_space **); +-- +2.1.4 + |
