This repository has been archived by the owner on Dec 19, 2018. It is now read-only.
forked from haiku/haiku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyscalls.cpp
487 lines (359 loc) · 8.25 KB
/
syscalls.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
#include <stdarg.h>
#include <stdio.h>
#include <syscalls.h>
// #prama mark - iterating, retrieving device/partition data
partition_id
_kern_get_next_disk_device_id(int32 *cookie, size_t *neededSize)
{
return -1;
}
partition_id
_kern_find_disk_device(const char *filename, size_t *neededSize)
{
return -1;
}
partition_id
_kern_find_partition(const char *filename, size_t *neededSize)
{
return -1;
}
status_t
_kern_get_disk_device_data(partition_id deviceID, bool deviceOnly,
struct user_disk_device_data *buffer, size_t bufferSize,
size_t *neededSize)
{
return B_ERROR;
}
partition_id
_kern_register_file_device(const char *filename)
{
return -1;
}
status_t
_kern_unregister_file_device(partition_id deviceID, const char *filename)
{
return B_ERROR;
}
partition_id
_kern_find_file_disk_device(const char *filename, size_t *neededSize)
{
return B_ERROR;
}
status_t
_kern_get_file_disk_device_path(partition_id id, char* buffer, size_t bufferSize)
{
return B_ERROR;
}
// #pragma mark - disk systems
status_t
_kern_get_disk_system_info(disk_system_id id,
struct user_disk_system_info *info)
{
return B_ERROR;
}
status_t
_kern_get_next_disk_system_info(int32 *cookie,
struct user_disk_system_info *info)
{
return B_ERROR;
}
status_t
_kern_find_disk_system(const char *name,
struct user_disk_system_info *info)
{
return B_ERROR;
}
bool
_kern_supports_defragmenting_partition(partition_id partitionID,
int32 changeCounter, bool *whileMounted)
{
return false;
}
bool
_kern_supports_repairing_partition(partition_id partitionID,
int32 changeCounter, bool checkOnly, bool *whileMounted)
{
return false;
}
bool
_kern_supports_resizing_partition(partition_id partitionID,
int32 changeCounter, bool *canResizeContents, bool *whileMounted)
{
return false;
}
bool
_kern_supports_moving_partition(partition_id partitionID,
int32 changeCounter, partition_id *unmovable,
partition_id *needUnmounting, size_t bufferSize)
{
return false;
}
bool
_kern_supports_setting_partition_name(partition_id partitionID,
int32 changeCounter)
{
return false;
}
bool
_kern_supports_setting_partition_content_name(partition_id partitionID,
int32 changeCounter, bool *whileMounted)
{
return false;
}
bool
_kern_supports_setting_partition_type(partition_id partitionID,
int32 changeCounter)
{
return false;
}
bool
_kern_supports_setting_partition_parameters(partition_id partitionID,
int32 changeCounter)
{
return false;
}
bool
_kern_supports_setting_partition_content_parameters(
partition_id partitionID, int32 changeCounter, bool *whileMounted)
{
return false;
}
bool
_kern_supports_initializing_partition(partition_id partitionID,
int32 changeCounter, const char *diskSystemName)
{
return false;
}
bool
_kern_supports_creating_child_partition(partition_id partitionID,
int32 changeCounter)
{
return false;
}
bool
_kern_supports_deleting_child_partition(partition_id partitionID,
int32 changeCounter)
{
return false;
}
bool
_kern_is_sub_disk_system_for(disk_system_id diskSystemID,
partition_id partitionID, int32 changeCounter)
{
return false;
}
status_t
_kern_validate_resize_partition(partition_id partitionID, int32 changeCounter,
off_t *size)
{
return B_ERROR;
}
status_t
_kern_validate_move_partition(partition_id partitionID, int32* changeCounter, partition_id childID,
int32* childChangeCounter, off_t newOffset, partition_id* descendantIDs,
int32* descendantChangeCounters, int32 descendantCount)
{
return B_ERROR;
}
status_t
_kern_validate_set_partition_name(partition_id partitionID, int32 changeCounter,
char *name)
{
return B_ERROR;
}
status_t
_kern_validate_set_partition_content_name(partition_id partitionID,
int32 changeCounter, char *name)
{
return B_ERROR;
}
status_t
_kern_set_partition_type(partition_id partitionID, int32* changeCounter,
partition_id childID, int32* childChangeCounter, const char* type)
{
return B_ERROR;
}
status_t
_kern_validate_initialize_partition(partition_id partitionID,
int32 changeCounter, const char *diskSystemName, char *name,
const char *parameters, size_t parametersSize)
{
return B_ERROR;
}
status_t
_kern_validate_create_child_partition(partition_id partitionID,
int32 changeCounter, off_t *offset, off_t *size, const char *type,
const char *parameters, size_t parametersSize)
{
return B_ERROR;
}
status_t
_kern_get_partitionable_spaces(partition_id partitionID, int32 changeCounter,
struct partitionable_space_data *buffer, int32 count, int32 *actualCount)
{
return B_ERROR;
}
status_t
_kern_get_next_supported_partition_type(partition_id partitionID,
int32 changeCounter, int32 *cookie, char *type)
{
return B_ERROR;
}
status_t
_kern_get_partition_type_for_content_type(disk_system_id diskSystemID,
const char *contentType, char *type)
{
return B_ERROR;
}
// #pragma mark - disk device modification
status_t
_kern_prepare_disk_device_modifications(partition_id deviceID)
{
return B_ERROR;
}
status_t
_kern_commit_disk_device_modifications(partition_id deviceID,
port_id port, int32 token, bool completeProgress)
{
return B_ERROR;
}
status_t
_kern_cancel_disk_device_modifications(partition_id deviceID)
{
return B_ERROR;
}
bool
_kern_is_disk_device_modified(partition_id deviceID)
{
return false;
}
status_t
_kern_defragment_partition(partition_id partitionID, int32* changeCounter)
{
return B_ERROR;
}
status_t
_kern_repair_partition(partition_id partitionID, int32* changeCounter,
bool checkOnly)
{
return B_ERROR;
}
status_t
_kern_resize_partition(partition_id partitionID, int32* changeCounter, partition_id childID,
int32* childChangeCounter, off_t size, off_t contentSize)
{
return B_ERROR;
}
status_t
_kern_move_partition(partition_id partitionID, int32* changeCounter, partition_id childID,
int32* childChangeCounter, off_t newOffset, partition_id* descendantIDs,
int32* descendantChangeCounters, int32 descendantCount)
{
return B_ERROR;
}
status_t
_kern_set_partition_name(partition_id partitionID, int32* changeCounter,
partition_id childID, int32* childChangeCounter, const char *name)
{
return B_ERROR;
}
status_t
_kern_set_partition_content_name(partition_id partitionID,
int32* changeCounter, const char *name)
{
return B_ERROR;
}
status_t
_kern_set_partition_type(partition_id partitionID, int32 changeCounter,
const char *type)
{
return B_ERROR;
}
status_t
_kern_set_partition_parameters(partition_id partitionID, int32* changeCounter,
partition_id childID, int32* childChangeCounter, const char *parameters)
{
return B_ERROR;
}
status_t
_kern_set_partition_content_parameters(partition_id partitionID,
int32* changeCounter, const char *parameters)
{
return B_ERROR;
}
status_t
_kern_initialize_partition(partition_id partitionID, int32* changeCounter,
const char *diskSystemName, const char *name, const char *parameters)
{
return B_ERROR;
}
status_t
_kern_uninitialize_partition(partition_id partitionID, int32* changeCounter)
{
return B_ERROR;
}
status_t
_kern_create_child_partition(partition_id partitionID, int32* changeCounter,
off_t offset, off_t size, const char *type, const char *name,
const char *parameters, partition_id *childID, int32* childChangeCounter)
{
return B_ERROR;
}
status_t
_kern_delete_partition(partition_id partitionID, int32* changeCounter)
{
return B_ERROR;
}
status_t
_kern_delete_child_partition(partition_id partitionID, int32* changeCounter,
partition_id childID, int32 childChangeCounter)
{
return B_ERROR;
}
// #pragma mark - jobs
status_t
_kern_get_next_disk_device_job_info(int32 *cookie,
struct user_disk_device_job_info *info)
{
return B_ERROR;
}
status_t
_kern_get_disk_device_job_info(disk_job_id id,
struct user_disk_device_job_info *info)
{
return B_ERROR;
}
status_t
_kern_get_disk_device_job_progress_info(disk_job_id id,
struct disk_device_job_progress_info *info)
{
return B_ERROR;
}
status_t
_kern_pause_disk_device_job(disk_job_id id)
{
return B_ERROR;
}
status_t
_kern_cancel_disk_device_job(disk_job_id id, bool reverse)
{
return B_ERROR;
}
// #pragma mark - change notification
status_t
_kern_start_watching_disks(uint32 eventMask, port_id port, int32 token)
{
return B_ERROR;
}
status_t
_kern_stop_watching_disks(port_id port, int32 token)
{
return B_ERROR;
}
// #pragma mark - other syscalls
status_t
_kern_get_safemode_option(const char *parameter, char *buffer,
size_t *_bufferSize)
{
return B_ERROR;
}