HomeSort by: relevance | last modified time | path
    Searched refs:lwp (Results 1 - 25 of 2094) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/ddb/
db_lwp.h 35 struct lwp *db_lwp_first(void);
36 struct lwp *db_lwp_next(struct lwp *);
db_syncobj.h 34 struct lwp;
37 struct lwp *db_syncobj_owner(const struct syncobj *, wchan_t);
  /src/external/gpl3/gdb.old/dist/gdb/nat/
x86-linux.h 25 /* Set whether our local mirror of LWP's debug registers has been
29 extern void lwp_set_debug_registers_changed (struct lwp_info *lwp,
32 /* Return nonzero if our local mirror of LWP's debug registers has
36 extern int lwp_debug_registers_changed (struct lwp_info *lwp);
40 extern void x86_linux_new_thread (struct lwp_info *lwp);
48 extern void x86_linux_prepare_to_resume (struct lwp_info *lwp);
x86-linux.c 35 lwp_set_debug_registers_changed (struct lwp_info *lwp, int value)
37 if (lwp_arch_private_info (lwp) == NULL)
38 lwp_set_arch_private_info (lwp, XCNEW (struct arch_lwp_info));
40 lwp_arch_private_info (lwp)->debug_registers_changed = value;
46 lwp_debug_registers_changed (struct lwp_info *lwp)
48 struct arch_lwp_info *info = lwp_arch_private_info (lwp);
62 x86_linux_new_thread (struct lwp_info *lwp)
64 lwp_set_debug_registers_changed (lwp, 1);
78 x86_linux_prepare_to_resume (struct lwp_info *lwp)
80 x86_linux_update_debug_registers (lwp);
    [all...]
linux-nat.h 1 /* Code for native debugging support for GNU/Linux (LWP layer).
47 typedef int (iterate_over_lwps_ftype) (struct lwp_info *lwp);
50 to DATA for every LWP in the list. If CALLBACK returns nonzero for
51 a particular LWP, return a pointer to the structure describing that
52 LWP immediately. Otherwise return NULL. This function must be
59 /* Return the ptid of LWP. */
61 extern ptid_t ptid_of_lwp (struct lwp_info *lwp);
63 /* Set the architecture-specific data of LWP. This function must be
66 extern void lwp_set_arch_private_info (struct lwp_info *lwp,
69 /* Return the architecture-specific data of LWP. This function mus
    [all...]
  /src/sys/arch/aarch64/include/
userret.h 5 void userret(struct lwp *);
  /src/sys/compat/ultrix/
ultrix_exec.h 31 int ultrix_exec_ecoff_probe(struct lwp *, struct exec_package *);
  /src/sys/compat/ossaudio/
ossaudio.h 31 int oss_ioctl_audio(struct lwp *, const struct oss_sys_ioctl_args *,
33 int oss_ioctl_mixer(struct lwp *, const struct oss_sys_ioctl_args *,
35 int oss_ioctl_sequencer(struct lwp *, const struct oss_sys_ioctl_args *,
  /src/sys/sys/
vfs_syscalls.h 45 int do_sys_statat(struct lwp *, int, const char *, unsigned int, struct stat *);
46 int do_fhstat(struct lwp *, const void *, size_t, struct stat *);
47 int do_fhstatvfs(struct lwp *, const void *, size_t, struct statvfs *, int);
50 int do_sys_pstatvfs(struct lwp *, const char *, int, struct statvfs *);
51 int do_sys_fstatvfs(struct lwp *, int, int, struct statvfs *);
53 int do_sys_getvfsstat(struct lwp *, void *, size_t, int, int (*)(const void *, void *, size_t), size_t, register_t *);
55 int do_sys_utimes(struct lwp *, struct vnode *, const char *, int,
57 int do_sys_utimens(struct lwp *, struct vnode *, const char *, int,
59 int do_sys_utimensat(struct lwp *, int, struct vnode *, const char *, int,
63 int do_open(struct lwp *, struct vnode *, struct pathbuf *, int, int, int *)
    [all...]
pty.h 39 int pty_fill_ptmget(struct lwp *, dev_t, int, int, void *, struct mount *);
40 int pty_grant_slave(struct lwp *, dev_t, struct mount *);
43 int pty_getmp(struct lwp *, struct mount **);
51 int (*allocvp)(struct mount *, struct lwp *, struct vnode **, dev_t,
53 int (*makename)(struct mount *, struct lwp *, char *, size_t, dev_t, char);
54 void (*getvattr)(struct mount *, struct lwp *, struct vattr *);
55 int (*getmp)(struct lwp *, struct mount **);
  /src/sys/arch/x86/include/
fpu.h 11 struct lwp;
22 void fpu_set_default_cw(struct lwp *, unsigned int);
30 void fpu_clear(struct lwp *, unsigned int);
31 void fpu_sigreset(struct lwp *);
33 void fpu_lwp_fork(struct lwp *, struct lwp *);
34 void fpu_lwp_abandon(struct lwp *l);
39 void process_write_fpregs_xmm(struct lwp *, const struct fxsave *);
40 void process_write_fpregs_s87(struct lwp *, const struct save87 *);
42 void process_read_fpregs_xmm(struct lwp *, struct fxsave *)
    [all...]
  /src/lib/librumpuser/
rumpuser_component.h 36 struct lwp *rumpuser_component_curlwp(void);
37 void rumpuser_component_switchlwp(struct lwp *);
  /src/sys/arch/amd64/include/
userret.h 71 static __inline void userret(struct lwp *);
78 userret(struct lwp *l)
  /src/sys/arch/i386/include/
userret.h 67 static __inline void userret(struct lwp *);
74 userret(struct lwp *l)
  /src/sys/arch/riscv/include/
userret.h 35 #include <sys/lwp.h>
39 userret(struct lwp *l)
  /src/sys/arch/sparc64/include/
frame.h 6 void *getframe(struct lwp *, int, int *);
  /src/external/gpl3/gdb/dist/gdb/nat/
linux-nat.h 1 /* Code for native debugging support for GNU/Linux (LWP layer).
50 typedef int (iterate_over_lwps_ftype) (struct lwp_info *lwp);
53 to DATA for every LWP in the list. If CALLBACK returns nonzero for
54 a particular LWP, return a pointer to the structure describing that
55 LWP immediately. Otherwise return NULL. This function must be
62 /* Return the ptid of LWP. */
64 extern ptid_t ptid_of_lwp (struct lwp_info *lwp);
66 /* Set the architecture-specific data of LWP. This function must be
69 extern void lwp_set_arch_private_info (struct lwp_info *lwp,
72 /* Return the architecture-specific data of LWP. This function mus
    [all...]
loongarch-linux.h 29 /* Called when resuming a thread LWP.
32 void loongarch_linux_prepare_to_resume (struct lwp_info *lwp);
36 void loongarch_linux_new_thread (struct lwp_info *lwp);
  /src/sys/arch/mips/include/
proc.h 43 struct lwp;
46 * Machine-dependent part of the lwp structure for MIPS
60 void (*md_syscall)(struct lwp *, u_int, u_int, __vaddr_t);
67 struct lwp;
70 int mips_singlestep(struct lwp *);
  /src/sys/compat/m68k4k/
m68k4k_exec.h 38 int exec_m68k4k_makecmds(struct lwp *, struct exec_package *);
  /src/sys/netinet6/
dccp6_var.h 45 struct mbuf *, struct lwp *);
46 int dccp6_bind(struct socket *, struct sockaddr *, struct lwp *);
47 int dccp6_listen(struct socket *, struct lwp *);
48 int dccp6_connect(struct socket *, struct sockaddr *, struct lwp *);
  /src/sys/compat/linux/common/
linux_ipccall.h 63 int linux_semop(struct lwp *, const struct linux_sys_ipc_args *,
65 int linux_semget(struct lwp *, const struct linux_sys_ipc_args *,
71 int linux_msgsnd(struct lwp *, const struct linux_sys_ipc_args *,
73 int linux_msgrcv(struct lwp *, const struct linux_sys_ipc_args *,
75 int linux_msgget(struct lwp *, const struct linux_sys_ipc_args *,
81 int linux_shmdt(struct lwp *, const struct linux_sys_ipc_args *,
83 int linux_shmget(struct lwp *, const struct linux_sys_ipc_args *,
  /src/sys/compat/aoutm68k/
aoutm68k_syscallargs.h 14 struct lwp;
668 int sys_syscall(struct lwp *, const struct sys_syscall_args *, register_t *);
670 int sys_exit(struct lwp *, const struct sys_exit_args *, register_t *);
672 int sys_fork(struct lwp *, const void *, register_t *);
674 int sys_read(struct lwp *, const struct sys_read_args *, register_t *);
676 int sys_write(struct lwp *, const struct sys_write_args *, register_t *);
678 int sys_open(struct lwp *, const struct sys_open_args *, register_t *);
680 int sys_close(struct lwp *, const struct sys_close_args *, register_t *);
682 int compat_50_sys_wait4(struct lwp *, const struct compat_50_sys_wait4_args *, register_t *);
685 int compat_43_sys_creat(struct lwp *, const struct compat_43_sys_creat_args *, register_t *)
    [all...]
  /src/sys/compat/freebsd/
freebsd_syscallargs.h 14 struct lwp;
607 int sys_nosys(struct lwp *, const void *, register_t *);
609 int sys_exit(struct lwp *, const struct sys_exit_args *, register_t *);
611 int sys_fork(struct lwp *, const void *, register_t *);
613 int sys_read(struct lwp *, const struct sys_read_args *, register_t *);
615 int sys_write(struct lwp *, const struct sys_write_args *, register_t *);
617 int sys_open(struct lwp *, const struct sys_open_args *, register_t *);
619 int sys_close(struct lwp *, const struct sys_close_args *, register_t *);
621 int compat_50_sys_wait4(struct lwp *, const struct compat_50_sys_wait4_args *, register_t *);
623 int compat_43_sys_creat(struct lwp *, const struct compat_43_sys_creat_args *, register_t *)
    [all...]
  /src/sys/compat/sunos/
sunos_syscallargs.h 14 struct lwp;
464 int sys_nosys(struct lwp *, const void *, register_t *);
466 int sys_exit(struct lwp *, const struct sys_exit_args *, register_t *);
468 int sys_fork(struct lwp *, const void *, register_t *);
470 int sys_read(struct lwp *, const struct sys_read_args *, register_t *);
472 int sys_write(struct lwp *, const struct sys_write_args *, register_t *);
474 int sunos_sys_open(struct lwp *, const struct sunos_sys_open_args *, register_t *);
476 int sys_close(struct lwp *, const struct sys_close_args *, register_t *);
478 int sunos_sys_wait4(struct lwp *, const struct sunos_sys_wait4_args *, register_t *);
480 int sunos_sys_creat(struct lwp *, const struct sunos_sys_creat_args *, register_t *)
    [all...]

Completed in 48 milliseconds

1 2 3 4 5 6 7 8 91011>>