diff options
author | Doug Gilbert <dgilbert@us.ibm.com> | 2013-12-19 14:25:06 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-01-10 17:04:25 -0600 |
commit | 613d36e02e5ce4e5b69cbb02483e9fa352666ecd (patch) | |
tree | 7a17f70f9a5b33ab4ddd6acebb8d0f4ff135594a /src/include/kernel/ipc.H | |
parent | 7df8e6fc5362bb57e49b2e7d8e256cac2785e726 (diff) | |
download | talos-hostboot-613d36e02e5ce4e5b69cbb02483e9fa352666ecd.tar.gz talos-hostboot-613d36e02e5ce4e5b69cbb02483e9fa352666ecd.zip |
IPC deadlock
CQ: SW239987
Change-Id: I2a33e767916cd80ae3b4acc604104963cbc648ac
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/7828
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/kernel/ipc.H')
-rw-r--r-- | src/include/kernel/ipc.H | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/kernel/ipc.H b/src/include/kernel/ipc.H index a67ea5463..f411808c3 100644 --- a/src/include/kernel/ipc.H +++ b/src/include/kernel/ipc.H @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2013 */ +/* COPYRIGHT International Business Machines Corp. 2013,2014 */ /* */ /* p1 */ /* */ @@ -25,6 +25,10 @@ #include <sys/msg.h> +#define IPC_DATA_AREA_LOCKED 0xFFFFFFFFFFFFFFFFul +#define IPC_DATA_AREA_READ 0xFFFFFFFFFFFFFFFEul +#define IPC_DATA_AREA_CLEAR 0 + namespace KernelIpc { struct ipc_data_area_t |