~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/erl_interface/include/erl_interface.h

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-08-05 20:54:29 UTC
  • mfrom: (6.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090805205429-pm4pnwew8axraosl
Tags: 1:13.b.1-dfsg-5
* Fixed parentheses in Emacs mode (closes: #536891).
* Removed unnecessary conflicts with erlang-manpages package.
* Added workaround for #475459: disabled threads on sparc architecture.
  This breaks wxErlang, so it's only a temporary solution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
typedef struct {
170
170
  Erl_Header h;
171
171
  int len;
172
 
  unsigned char *a;
 
172
  char *a;
173
173
} Erl_Atom;
174
174
 
175
175
typedef struct {
176
176
  Erl_Header h;
177
 
  unsigned char * node;
 
177
  char * node;
178
178
  unsigned int number;
179
179
  unsigned int serial;
180
180
  unsigned char creation;
182
182
 
183
183
typedef struct {    
184
184
  Erl_Header h;
185
 
  unsigned char * node;
 
185
  char * node;
186
186
  unsigned int number;
187
187
  unsigned char creation;
188
188
} Erl_Port;
189
189
 
190
190
typedef struct {
191
191
  Erl_Header h;
192
 
  unsigned char * node;
 
192
  char * node;
193
193
  int len;
194
194
  unsigned int n[3];
195
195
  unsigned char creation;
233
233
typedef struct {    
234
234
  Erl_Header h;
235
235
  int len;           
236
 
  unsigned char *name;        
 
236
  char *name;        
237
237
  struct _eterm *v;  
238
238
} Erl_Variable;
239
239
 
278
278
  ETERM *msg; /* the actual message */
279
279
  ETERM *from;
280
280
  ETERM *to;
281
 
  unsigned char to_name[MAXREGLEN+1];
 
281
  char to_name[MAXREGLEN+1];
282
282
} ErlMessage;
283
283
 
284
284
typedef unsigned char Erl_Heap;