Change db_ps() to have the correct number and type of args for a ddb

command.
This commit is contained in:
Bruce Evans 1995-08-27 02:40:39 +00:00
parent 976794d967
commit d1dae4c8c1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10349

View file

@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: db_ps.c,v 1.6 1995/05/30 07:57:07 rgrimes Exp $
* $Id: db_ps.c,v 1.7 1995/08/20 05:25:11 davidg Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
@ -39,7 +39,12 @@
#include <machine/cons.h>
void
db_ps() {
db_ps(dummy1, dummy2, dummy3, dummy4)
db_expr_t dummy1;
boolean_t dummy2;
db_expr_t dummy3;
char * dummy4;
{
int np;
int nl = 0;
volatile struct proc *p, *pp;