#!/pkg/bin/ksh
# ---------------------------------------------------------------------
# isis_show_xipc - Show xipc queue information for isis
#
# October 2016, Paul Wells
#
# Copyright (c) 2016 by cisco Systems, Inc.
# All rights reserved.
#--------------------------------------------------------------------

ISIS_PIDS=`sysmgr_show -o -p isis | grep "PID:" | sed s/"PID:"// `
for pid in $ISIS_PIDS
do
    xipc_show -p $pid
    xipc_show -p $pid -i 1
    echo " "
done

