~ubuntu-branches/ubuntu/trusty/erlang/trusty

« 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-06-11 12:18:07 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090611121807-ks7eb4xrt7dsysgx
Tags: 1:13.b.1-dfsg-1
* New upstream release.
* Removed unnecessary dependency of erlang-os-mon on erlang-observer and
  erlang-tools and added missing dependency of erlang-nox on erlang-os-mon
  (closes: #529512).
* Removed a patch to eunit application because the bug was fixed upstream.

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;