Changeset 3fafe5e0 in mainline for uspace/app
- Timestamp:
- 2018-04-27T14:15:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7148abf
- Parents:
- a2eb85d
- git-author:
- Jiri Svoboda <jiri@…> (2018-04-26 17:14:26)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-04-27 14:15:03)
- Location:
- uspace/app
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/dltest/dltest.c
ra2eb85d r3fafe5e0 891 891 #endif /* STATIC_EXE */ 892 892 893 // printf("dlclose()... "); 894 // dlclose(handle); 895 // printf("Passed\n"); 893 #if 0 894 printf("dlclose()... "); 895 dlclose(handle); 896 printf("Passed\n"); 897 #endif 896 898 897 899 return 0; -
uspace/app/trace/trace.c
ra2eb85d r3fafe5e0 381 381 rc = udebug_args_read(sess, thread_hash, sc_args); 382 382 383 // printf("[%d] ", thread_id);384 385 383 if (rc != EOK) { 386 384 printf("error\n"); … … 454 452 &ev_type, &val0, &val1); 455 453 456 // printf("rc = %d, ev_type=%d\n", rc, ev_type);457 454 if (ev_type == UDEBUG_EVENT_FINISHED) { 458 455 /* Done tracing this thread */ -
uspace/app/wavplay/wave.c
ra2eb85d r3fafe5e0 86 86 if (error) 87 87 *error = "invalid subchunk1 size"; 88 //return EINVAL;88 return EINVAL; 89 89 } 90 90 … … 100 100 if (error) 101 101 *error = "invalid subchunk2 id"; 102 //return EINVAL;102 return EINVAL; 103 103 } 104 104
Note:
See TracChangeset
for help on using the changeset viewer.