Store all object names as Unicode in the server.
[wine] / server / process.h
1 /*
2  * Wine server processes
3  *
4  * Copyright (C) 1999 Alexandre Julliard
5  */
6
7 #ifndef __WINE_SERVER_PROCESS_H
8 #define __WINE_SERVER_PROCESS_H
9
10 #ifndef __WINE_SERVER__
11 #error This file can only be used in the Wine server
12 #endif
13
14 #include "object.h"
15
16 /* process structures */
17
18 struct process
19 {
20     struct object        obj;             /* object header */
21     struct process      *next;            /* system-wide process list */
22     struct process      *prev;
23     struct thread       *thread_list;     /* head of the thread list */
24     struct thread       *debugger;        /* thread debugging this process */
25     struct object       *handles;         /* handle entries */
26     int                  exit_code;       /* process exit code */
27     int                  running_threads; /* number of threads running in this process */
28     struct timeval       start_time;      /* absolute time at process start */
29     struct timeval       end_time;        /* absolute time at process end */
30     int                  priority;        /* priority class */
31     int                  affinity;        /* process affinity mask */
32     int                  suspend;         /* global process suspend count */
33     struct object       *console_in;      /* console input */
34     struct object       *console_out;     /* console output */
35     struct event        *init_event;      /* event for init done */
36     struct new_process_request *info;     /* startup info (freed after startup) */
37 };
38
39 struct process_snapshot
40 {
41     struct process *process;  /* process ptr */
42     struct process *parent;   /* process parent */
43     int             threads;  /* number of threads */
44     int             priority; /* priority class */
45 };
46
47 /* process functions */
48
49 extern struct process *create_initial_process(void);
50 extern struct process *get_process_from_id( void *id );
51 extern struct process *get_process_from_handle( int handle, unsigned int access );
52 extern int process_set_debugger( struct process *process, struct thread *thread );
53 extern void add_process_thread( struct process *process,
54                                 struct thread *thread );
55 extern void remove_process_thread( struct process *process,
56                                    struct thread *thread );
57 extern void suspend_process( struct process *process );
58 extern void resume_process( struct process *process );
59 extern void kill_process( struct process *process, int exit_code );
60 extern void kill_debugged_processes( struct thread *debugger, int exit_code );
61 extern struct process_snapshot *process_snap( int *count );
62
63 #endif  /* __WINE_SERVER_PROCESS_H */