diff options
Diffstat (limited to 'lib/libthread_db/thread_db_int.h')
-rw-r--r-- | lib/libthread_db/thread_db_int.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libthread_db/thread_db_int.h b/lib/libthread_db/thread_db_int.h index 7dc152cb3441e..2e5ecba71c8db 100644 --- a/lib/libthread_db/thread_db_int.h +++ b/lib/libthread_db/thread_db_int.h @@ -79,6 +79,10 @@ struct ta_ops { /* FreeBSD specific extensions. */ td_err_e (*to_thr_sstep)(const td_thrhandle_t *, int); +#if defined(__i386__) + td_err_e (*to_thr_getxmmregs)(const td_thrhandle_t *, char *); + td_err_e (*to_thr_setxmmregs)(const td_thrhandle_t *, const char *); +#endif }; #ifdef TD_DEBUG |