~jkavalik/cdfs/main

« back to all changes in this revision

Viewing changes to uspace/app/sbi/src/run.h

merge mainline
update async in cdfs
add READ TOC support in ata_bd, libblock and cdfs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (c) 2010 Jiri Svoboda
 
2
 * Copyright (c) 2011 Jiri Svoboda
3
3
 * All rights reserved.
4
4
 *
5
5
 * Redistribution and use in source and binary forms, with or without
60
60
    rdata_item_t *arg_val);
61
61
void run_proc_ar_create(run_t *run, rdata_var_t *obj, stree_proc_t *proc,
62
62
    run_proc_ar_t **rproc_ar);
 
63
void run_proc_ar_destroy(run_t *run, run_proc_ar_t *proc_ar);
63
64
 
64
65
var_class_t run_item_get_vc(run_t *run, rdata_item_t *item);
65
66
void run_cvt_value_item(run_t *run, rdata_item_t *item, rdata_item_t **ritem);
78
79
 
79
80
run_thread_ar_t *run_thread_ar_new(void);
80
81
run_proc_ar_t *run_proc_ar_new(void);
 
82
void run_proc_ar_delete(run_proc_ar_t *proc_ar);
81
83
run_block_ar_t *run_block_ar_new(void);
 
84
void run_block_ar_delete(run_block_ar_t *block_ar);
 
85
void run_proc_ar_delete(run_proc_ar_t *proc_ar);
 
86
void run_block_ar_destroy(run_t *run, run_block_ar_t *block_ar);
 
87
 
82
88
 
83
89
#endif