Changeset cde999a in mainline for uspace/app
- Timestamp:
- 2018-01-04T20:22:51Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3d95c9d, 84a1a54
- Parents:
- 3c7702c0
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:22:51)
- Location:
- uspace/app
- Files:
-
- 6 edited
-
bdsh/cmds/modules/mkfile/mkfile.c (modified) (1 diff)
-
edit/sheet.c (modified) (2 diffs)
-
mkexfat/mkexfat.c (modified) (5 diffs)
-
mkmfs/mkmfs.c (modified) (9 diffs)
-
sysinst/sysinst.c (modified) (5 diffs)
-
taskdump/symtab.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/mkfile/mkfile.c
r3c7702c0 rcde999a 87 87 * @param str String containing the size specification. 88 88 * @param rsize Place to store size in bytes 89 * @return EOK on success or error code89 * @return EOK on success or an error code 90 90 */ 91 91 static int read_size(const char *str, size_t *rsize) -
uspace/app/edit/sheet.c
r3c7702c0 rcde999a 95 95 * @param str The text to insert (printable characters, tabs, newlines). 96 96 * 97 * @return EOK on success or negativeerror code.97 * @return EOK on success or an error code. 98 98 * 99 99 * @note @a dir affects which way tags that were placed on @a pos will … … 145 145 * @param epos Ending point. 146 146 * 147 * @return EOK on success or negativeerror code.147 * @return EOK on success or an error code. 148 148 **/ 149 149 int sheet_delete(sheet_t *sh, spt_t *spos, spt_t *epos) -
uspace/app/mkexfat/mkexfat.c
r3c7702c0 rcde999a 344 344 * @param cfg Pointer to the exFAT configuration structure. 345 345 * @param base Base sector of the EBS. 346 * @return EOK on success or a negativeerror code.346 * @return EOK on success or an error code. 347 347 */ 348 348 static int … … 397 397 * @param service_id The service id. 398 398 * @param cfg Pointer to the exfat_cfg structure. 399 * @return EOK on success or a negativeerror code.399 * @return EOK on success or an error code. 400 400 */ 401 401 static int … … 437 437 * @param cur_cls Cluster index from where to start the allocation. 438 438 * @param ncls Number of clusters to allocate. 439 * @return EOK on success or a negativeerror code.439 * @return EOK on success or an error code. 440 440 */ 441 441 static int … … 494 494 * @param service_id The service id. 495 495 * @param cfg Pointer to the exfat configuration structure. 496 * @return EOK on success or a negativeerror code.496 * @return EOK on success or an error code. 497 497 */ 498 498 static int … … 593 593 * @param service_id The service id. 594 594 * @param cfg Pointer to the exFAT configuration structure. 595 * @return EOK on success or a negativeerror code.595 * @return EOK on success or an error code. 596 596 */ 597 597 static int -
uspace/app/mkmfs/mkmfs.c
r3c7702c0 rcde999a 290 290 * @param sb Pointer to the superblock structure. 291 291 * 292 * @return EOK on success or a negativeerror code.292 * @return EOK on success or an error code. 293 293 */ 294 294 static int insert_dentries(const struct mfs_sb_info *sb) … … 343 343 * @param sb Pointer to the superblock structure. 344 344 * 345 * @return EOK on success or a negativeerror code.345 * @return EOK on success or an error code. 346 346 */ 347 347 static int init_inode_table(const struct mfs_sb_info *sb) … … 376 376 * @param sb Ponter to the superblock structure. 377 377 * 378 * @return EOK on success or a negativeerror code.378 * @return EOK on success or an error code. 379 379 */ 380 380 static int make_root_ino(const struct mfs_sb_info *sb) … … 413 413 * @param sb Pointer to the superblock structure. 414 414 * 415 * @return EOK on success or a negativeerror code.415 * @return EOK on success or an error code. 416 416 */ 417 417 static int make_root_ino2(const struct mfs_sb_info *sb) … … 452 452 * @param sb Pointer to the superblock structure. 453 453 * 454 * @return EOK on success or a negativeerror code.454 * @return EOK on success or an error code. 455 455 */ 456 456 static int init_superblock(struct mfs_sb_info *sb) … … 559 559 * @param sbi Pointer to the superblock structure to write on disk. 560 560 * 561 * @return EOK on success or a negativeerror code.561 * @return EOK on success or an error code. 562 562 */ 563 563 static int write_superblock(const struct mfs_sb_info *sbi) … … 592 592 * @param sbi Pointer to the superblock structure to write on disk. 593 593 * 594 * @return EOK on success or a negativeerror code.594 * @return EOK on success or an error code. 595 595 */ 596 596 static int write_superblock3(const struct mfs_sb_info *sbi) … … 625 625 * @param sb Pointer to the superblock structure. 626 626 * 627 * @return EOK on success or a negativeerror code.627 * @return EOK on success or an error code. 628 628 */ 629 629 static int init_bitmaps(const struct mfs_sb_info *sb) … … 699 699 * @param data Pointer to the block content. 700 700 * 701 * @return EOK on success or a negativeerror number.701 * @return EOK on success or a error number. 702 702 */ 703 703 static inline int write_block(aoff64_t off, size_t size, const void *data) -
uspace/app/sysinst/sysinst.c
r3c7702c0 rcde999a 83 83 * @param pdev Place to store partition device name 84 84 * 85 * @return EOK on success or error code85 * @return EOK on success or an error code 86 86 */ 87 87 static int sysinst_label_dev(const char *dev, char **pdev) … … 152 152 * 153 153 * @param dev Partition device 154 * @return EOK on success or error code154 * @return EOK on success or an error code 155 155 */ 156 156 static int sysinst_fs_mount(const char *dev) … … 191 191 /** Copy boot files. 192 192 * 193 * @return EOK on success or error code193 * @return EOK on success or an error code 194 194 */ 195 195 static int sysinst_copy_boot_files(void) … … 258 258 * 259 259 * @param devp Disk device 260 * @return EOK on success or error code260 * @return EOK on success or an error code 261 261 */ 262 262 static int sysinst_copy_boot_blocks(const char *devp) … … 353 353 * 354 354 * @param dev Device to install to. 355 * @return EOK on success or error code355 * @return EOK on success or an error code 356 356 */ 357 357 static int sysinst_install(const char *dev) -
uspace/app/taskdump/symtab.c
r3c7702c0 rcde999a 285 285 /** Check if ELF header is valid. 286 286 * 287 * @return EOK on success or negativeerror code.287 * @return EOK on success or an error code. 288 288 */ 289 289 static int elf_hdr_check(elf_header_t *ehdr)
Note:
See TracChangeset
for help on using the changeset viewer.
