Changeset c735afb in mainline for uspace/lib/cpp/include/__bits
- Timestamp:
- 2018-07-05T21:41:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 199b6d8
- Parents:
- b57a3ee
- git-author:
- Dzejrou <dzejrou@…> (2018-06-25 18:54:33)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
- Location:
- uspace/lib/cpp/include/__bits
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/random.hpp
rb57a3ee rc735afb 1030 1030 * something better. 1031 1031 */ 1032 hel::srand om(hel::time(nullptr));1032 hel::srand(hel::time(nullptr)); 1033 1033 } 1034 1034 1035 1035 result_type operator()() 1036 1036 { 1037 return hel::rand om();1037 return hel::rand(); 1038 1038 } 1039 1039 -
uspace/lib/cpp/include/__bits/stdexcept.hpp
rb57a3ee rc735afb 49 49 50 50 protected: 51 c onst char* what_;51 char* what_; 52 52 }; 53 53 … … 96 96 97 97 protected: 98 c onst char* what_;98 char* what_; 99 99 }; 100 100 -
uspace/lib/cpp/include/__bits/thread/threading.hpp
rb57a3ee rc735afb 33 33 { 34 34 extern "C" { 35 #include <async.h> 35 36 #include <fibril.h> 36 37 #include <fibril_synch.h> … … 157 158 static void sleep(time_unit time) 158 159 { 159 hel:: fibril_usleep(time);160 hel::async_usleep(time); 160 161 } 161 162 };
Note:
See TracChangeset
for help on using the changeset viewer.