1 /* Copyright (C) 2010 - 2013 UNISYS CORPORATION 2 * All rights reserved. 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or (at 7 * your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, but 10 * WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or 12 * NON INFRINGEMENT. See the GNU General Public License for more 13 * details. 14 */ 15 16 #ifndef __CHANSTUB_H__ 17 #define __CHANSTUB_H__ 18 unsigned char SignalInsert_withLock(CHANNEL_HEADER __iomem *pChannel, u32 Queue, 19 void *pSignal, spinlock_t *lock); 20 unsigned char SignalRemove_withLock(CHANNEL_HEADER __iomem *pChannel, u32 Queue, 21 void *pSignal, spinlock_t *lock); 22 23 #endif 24