Changeset 1ef0fc3 in mainline for uspace/app/sbi/src/tdata_t.h


Ignore:
Timestamp:
2010-04-10T11:19:18Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7e45c8
Parents:
2721a75 (diff), 074444f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from lp:~jsvoboda/helenos/sysel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/tdata_t.h

    r2721a75 r1ef0fc3  
    3434/** Class of primitive type. */
    3535typedef enum {
     36        /** Boolean type */
     37        tpc_bool,
     38        /** Character type */
     39        tpc_char,
    3640        /** Integer type */
    3741        tpc_int,
     
    5761        /** CSI definition */
    5862        struct stree_csi *csi;
     63
     64        /** (Real) type arguments */
     65        list_t targs; /* of tdata_item_t */
    5966} tdata_object_t;
    6067
     
    7077        list_t extents; /* of stree_expr_t */
    7178} tdata_array_t;
    72 
    73 /** Generic type. */
    74 typedef struct {
    75 } tdata_generic_t;
    7679
    7780/** Functional type. */
     
    9093        /** Array type item */
    9194        tic_tarray,
    92         /** Generic type item */
    93         tic_tgeneric,
    9495        /** Function type item */
    9596        tic_tfun,
     
    106107                tdata_object_t *tobject;
    107108                tdata_array_t *tarray;
    108                 tdata_generic_t *tgeneric;
    109109                tdata_fun_t *tfun;
    110110        } u;
Note: See TracChangeset for help on using the changeset viewer.