PERFORCE change 54676 for review

Marcel Moolenaar marcel at FreeBSD.org
Sat Jun 12 03:04:50 GMT 2004


http://perforce.freebsd.org/chv.cgi?CH=54676

Change 54676 by marcel at marcel_nfs on 2004/06/12 03:03:31

	o Change the type of td_frame to struct trapframe *.
	o Add td_kstack. We need it on ia64.
	o Add prototype for kgdb_thr_init().

Affected files ...

.. //depot/projects/gdb/usr.bin/kgdb/kgdb.h#3 edit

Differences ...

==== //depot/projects/gdb/usr.bin/kgdb/kgdb.h#3 (text+ko) ====

@@ -106,14 +106,18 @@
 
 extern kvm_t *kvm;
 
+struct trapframe;
+
 struct kthr {
-	void	*td_frame;
+	struct trapframe *td_frame;
+	uintptr_t td_kstack;
 	int	td_tid;
 };
 
 extern struct kthr *curkthr;
 
 struct kthr *kgdb_thr_first(void);
+struct kthr *kgdb_thr_init(void);
 struct kthr *kgdb_thr_lookup(int);
 struct kthr *kgdb_thr_next(struct kthr *);
 struct kthr *kgdb_thr_select(struct kthr *);


More information about the p4-projects mailing list