#!/bin/bash
#
# (C) Copyright Network Associates Inc. 2003
#
# Flush all of the event queues
#
if [ -f $NETAWSS/.profile.vars ]; then 
    . $NETAWSS/.profile.vars 
else 
    . /var/NAIENV/.profile.vars 
fi 
set -a

PATH=$wsPATH:$PATH

shopt -s extglob

# Send a flush signal to the event handler
killall -q -USR1 evthandler
exit 0
