~ubuntu-branches/ubuntu/breezy/orbit2/breezy

« back to all changes in this revision

Viewing changes to include/orbit/GIOP/giop.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-09-06 16:37:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050906163702-hrqi0ctymth53bnn
Tags: 1:2.12.4-0ubuntu1
* New upstream version.
* debian/patches/100-compile-name-server.patch:
  - updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define GIOP_H 1
3
3
 
4
4
#include <linc/linc.h>
5
 
#define ORBIT_SSL_SUPPORT LINC_SSL_SUPPORT
 
5
#define ORBIT_SSL_SUPPORT LINK_SSL_SUPPORT
6
6
 
7
7
#include <orbit/GIOP/giop-types.h>
8
8
#include <orbit/GIOP/giop-send-buffer.h>
15
15
 
16
16
#ifdef ORBIT2_INTERNAL_API
17
17
 
18
 
void giop_init (void);
 
18
void        giop_init              (gboolean thread_safe,
 
19
                                    gboolean blank_wire_data);
 
20
void        giop_main_run          (void);
 
21
void        giop_shutdown          (void);
 
22
gboolean    giop_thread_safe       (void);
 
23
gboolean    giop_thread_io         (void);
 
24
GIOPThread *giop_thread_self       (void);
 
25
void        giop_invoke_async      (GIOPMessageQueueEntry *ent);
 
26
void        giop_recv_set_limit    (glong limit);
 
27
void        giop_incoming_signal_T (GIOPThread *tdata, GIOPMsgType t);
 
28
 
 
29
typedef struct _GIOPQueue GIOPQueue;
 
30
GIOPThread *giop_thread_get_main  (void);
 
31
void        giop_thread_set_main_handler (gpointer    request_handler);
 
32
void        giop_thread_request_push     (GIOPThread *tdata,
 
33
                                          gpointer   *poa_object,
 
34
                                          gpointer   *recv_buffer);
 
35
void        giop_thread_request_push_key (gpointer    key,
 
36
                                          gpointer   *poa_object,
 
37
                                          gpointer   *recv_buffer);
 
38
gboolean    giop_thread_same_key         (gpointer    key,
 
39
                                          gboolean    no_key_default);
 
40
void        giop_thread_key_add          (GIOPThread *tdata,
 
41
                                          gpointer    key);
 
42
void        giop_thread_key_release      (gpointer    key);
 
43
void        giop_thread_new_check        (GIOPThread *opt_self);
 
44
void        giop_thread_queue_process    (GIOPThread *tdata);
 
45
gboolean    giop_thread_queue_empty_T    (GIOPThread *tdata);
 
46
void        giop_thread_queue_tail_wakeup(GIOPThread *tdata);
19
47
 
20
48
#endif /* ORBIT2_INTERNAL_API */
21
49