Editing LV2 Functions and Syscalls
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 4,770: | Line 4,770: | ||
| | | | ||
| sys_fs_link | | sys_fs_link | ||
| int sys_fs_link(const | | int sys_fs_link(char const*, char const*) | ||
|- | |- | ||
| 811 | | 811 | ||
Line 4,819: | Line 4,819: | ||
| | | | ||
| sys_fs_fcntl | | sys_fs_fcntl | ||
| int sys_fs_fcntl(int | | int sys_fs_fcntl(int, int, void *, unsigned long) | ||
|- | |- | ||
| 818 | | 818 | ||
Line 4,849: | Line 4,847: | ||
| | | | ||
| sys_fs_fget_block_size | | sys_fs_fget_block_size | ||
| int sys_fs_fget_block_size(int | | int sys_fs_fget_block_size(int, unsigned long *, unsigned long *, unsigned long *, int *) | ||
|- | |- | ||
| 822 | | 822 | ||
Line 4,856: | Line 4,854: | ||
| | | | ||
| sys_fs_get_block_size | | sys_fs_get_block_size | ||
| int sys_fs_get_block_size(const | | int sys_fs_get_block_size(char const*, unsigned long *, unsigned long *, unsigned long *) | ||
|- | |- | ||
| 823 | | 823 | ||
Line 4,863: | Line 4,861: | ||
| | | | ||
| sys_fs_acl_read | | sys_fs_acl_read | ||
| int sys_fs_acl_read(const | | int sys_fs_acl_read(char const*, CellFsAcl *) | ||
|- | |- | ||
| 824 | | 824 | ||
Line 4,870: | Line 4,868: | ||
| | | | ||
| sys_fs_acl_write | | sys_fs_acl_write | ||
| int sys_fs_acl_read(const | | int sys_fs_acl_read(char const*, CellFsAcl *) | ||
|- | |- | ||
| 825 | | 825 | ||
Line 4,877: | Line 4,875: | ||
| | | | ||
| sys_fs_lsn_get_cda_size | | sys_fs_lsn_get_cda_size | ||
| int sys_fs_lsn_get_cda_size(int | | int sys_fs_lsn_get_cda_size(int, unsigned long *) | ||
|- | |- | ||
| 826 | | 826 | ||
Line 4,884: | Line 4,882: | ||
| | | | ||
| sys_fs_lsn_get_cda | | sys_fs_lsn_get_cda | ||
| int sys_fs_lsn_get_cda(int | | int sys_fs_lsn_get_cda(int, CellFsCda *, unsigned long, unsigned long *) | ||
|- | |- | ||
| 827 | | 827 | ||
Line 4,905: | Line 4,903: | ||
| | | | ||
| sys_fs_lsn_read | | sys_fs_lsn_read | ||
| int sys_fs_lsn_read(int | | int sys_fs_lsn_read(int, CellFsCda const*, unsigned long) | ||
|- | |- | ||
| 830 | | 830 | ||
Line 4,912: | Line 4,910: | ||
| | | | ||
| sys_fs_lsn_write | | sys_fs_lsn_write | ||
| int sys_fs_lsn_write(int | | int sys_fs_lsn_write(int, CellFsCda const*, unsigned long) | ||
|- | |- | ||
| 831 | | 831 | ||
Line 4,933: | Line 4,931: | ||
| | | | ||
| sys_fs_symbolic_link | | sys_fs_symbolic_link | ||
| int sys_fs_symbolic_link(const | | int sys_fs_symbolic_link(char const*, char const*) | ||
|- | |- | ||
| 834 | | 834 | ||
Line 4,947: | Line 4,945: | ||
| | | | ||
| sys_fs_chown | | sys_fs_chown | ||
| int sys_fs_chown(const | | int sys_fs_chown(char const*, int, int) | ||
|- | |- | ||
| 836 | | 836 | ||
Line 4,954: | Line 4,952: | ||
| | | | ||
| sys_fs_newfs | | sys_fs_newfs | ||
| int sys_fs_newfs(const | | int sys_fs_newfs(char const* deviceName, char const*, int, char const**) | ||
|- | |- | ||
| 837 | | 837 | ||
Line 4,961: | Line 4,959: | ||
| | | | ||
| sys_fs_mount | | sys_fs_mount | ||
| int sys_fs_mount(const | | int sys_fs_mount(char const* deviceName, char const*, char const*, int, int, int, char const**) <br>Example: Device Name (e.g CELL_FS_IOS:BUILTIN_FLSH1), Device File System (e.g CELL_FS_FAT), Device Path (e.g. /dev_flash), 0, Write Protection (0 or 1), 0, 0, 0 | ||
|- | |- | ||
| 838 | | 838 | ||
Line 4,968: | Line 4,966: | ||
| | | | ||
| sys_fs_unmount | | sys_fs_unmount | ||
| int sys_fs_unmount(const | | int sys_fs_unmount(char const*, int, int)<br>Parameters: Device Path (e.g. /dev_flash) | ||
|- | |- | ||
| 839 | | 839 | ||
Line 4,988: | Line 4,986: | ||
| | | | ||
| sys_fs_disk_free | | sys_fs_disk_free | ||
| int sys_fs_disk_free(const | | int sys_fs_disk_free(char const*, unsigned long *, unsigned long *) | ||
|- | |- | ||
| 841 | | 841 | ||
Line 4,995: | Line 4,993: | ||
| | | | ||
| sys_fs_get_mount_info_size | | sys_fs_get_mount_info_size | ||
| int sys_fs_get_mount_info_size( | | int sys_fs_get_mount_info_size(unsigned long *) | ||
|- | |- | ||
| 842 | | 842 | ||
Line 5,003: | Line 5,000: | ||
| | | | ||
| sys_fs_get_mount_info | | sys_fs_get_mount_info | ||
| int sys_fs_get_mount_info(CellFsMountInformation* | | int sys_fs_get_mount_info(CellFsMountInformation *, unsigned long, unsigned long *) | ||
|- | |- | ||
| 843 | | 843 | ||
Line 5,012: | Line 5,007: | ||
| | | | ||
| sys_fs_get_fs_info_size | | sys_fs_get_fs_info_size | ||
| int sys_fs_get_fs_info_size( | | int sys_fs_get_fs_info_size(unsigned long *) | ||
|- | |- | ||
| 844 | | 844 | ||
Line 5,019: | Line 5,014: | ||
| | | | ||
| sys_fs_get_fs_info | | sys_fs_get_fs_info | ||
| int sys_fs_get_fs_info( | | int sys_fs_get_fs_info(ulong, ulong*, CellFsInfo *) | ||
|- | |- | ||
| 845 | | 845 | ||
Line 5,026: | Line 5,021: | ||
| | | | ||
| sys_fs_mapped_allocate | | sys_fs_mapped_allocate | ||
| int sys_fs_mapped_allocate(int, | | int sys_fs_mapped_allocate(int, unsigned long, void **) | ||
|- | |- | ||
| 846 | | 846 |