Skip to content
Snippets Groups Projects
Commit 5365ca15 authored by bunnei's avatar bunnei
Browse files

Kernel: Updated various kernel function "name" arguments to be const references.

parent d7363322
No related branches found
No related tags found
No related merge requests found
...@@ -139,7 +139,7 @@ Result ClearEvent(Handle handle) { ...@@ -139,7 +139,7 @@ Result ClearEvent(Handle handle) {
* @param name Optional name of event * @param name Optional name of event
* @return Newly created Event object * @return Newly created Event object
*/ */
Event* CreateEvent(Handle& handle, const ResetType reset_type, const std::string name) { Event* CreateEvent(Handle& handle, const ResetType reset_type, const std::string& name) {
Event* evt = new Event; Event* evt = new Event;
handle = Kernel::g_object_pool.Create(evt); handle = Kernel::g_object_pool.Create(evt);
...@@ -158,7 +158,7 @@ Event* CreateEvent(Handle& handle, const ResetType reset_type, const std::string ...@@ -158,7 +158,7 @@ Event* CreateEvent(Handle& handle, const ResetType reset_type, const std::string
* @param name Optional name of event * @param name Optional name of event
* @return Handle to newly created Event object * @return Handle to newly created Event object
*/ */
Handle CreateEvent(const ResetType reset_type, const std::string name) { Handle CreateEvent(const ResetType reset_type, const std::string& name) {
Handle handle; Handle handle;
Event* evt = CreateEvent(handle, reset_type, name); Event* evt = CreateEvent(handle, reset_type, name);
return handle; return handle;
......
...@@ -47,6 +47,6 @@ Result ClearEvent(Handle handle); ...@@ -47,6 +47,6 @@ Result ClearEvent(Handle handle);
* @param name Optional name of event * @param name Optional name of event
* @return Handle to newly created Event object * @return Handle to newly created Event object
*/ */
Handle CreateEvent(const ResetType reset_type, const std::string name="Unknown"); Handle CreateEvent(const ResetType reset_type, const std::string& name="Unknown");
} // namespace } // namespace
...@@ -137,7 +137,7 @@ Result ReleaseMutex(Handle handle) { ...@@ -137,7 +137,7 @@ Result ReleaseMutex(Handle handle) {
* @param name Optional name of mutex * @param name Optional name of mutex
* @return Pointer to new Mutex object * @return Pointer to new Mutex object
*/ */
Mutex* CreateMutex(Handle& handle, bool initial_locked, const std::string name) { Mutex* CreateMutex(Handle& handle, bool initial_locked, const std::string& name) {
Mutex* mutex = new Mutex; Mutex* mutex = new Mutex;
handle = Kernel::g_object_pool.Create(mutex); handle = Kernel::g_object_pool.Create(mutex);
...@@ -161,7 +161,7 @@ Mutex* CreateMutex(Handle& handle, bool initial_locked, const std::string name) ...@@ -161,7 +161,7 @@ Mutex* CreateMutex(Handle& handle, bool initial_locked, const std::string name)
* @param name Optional name of mutex * @param name Optional name of mutex
* @return Handle to newly created object * @return Handle to newly created object
*/ */
Handle CreateMutex(bool initial_locked, std::string name) { Handle CreateMutex(bool initial_locked, const std::string& name) {
Handle handle; Handle handle;
Mutex* mutex = CreateMutex(handle, initial_locked, name); Mutex* mutex = CreateMutex(handle, initial_locked, name);
return handle; return handle;
......
...@@ -23,6 +23,6 @@ Result ReleaseMutex(Handle handle); ...@@ -23,6 +23,6 @@ Result ReleaseMutex(Handle handle);
* @param name Optional name of mutex * @param name Optional name of mutex
* @return Handle to newly created object * @return Handle to newly created object
*/ */
Handle CreateMutex(bool initial_locked, const std::string name="Unknown"); Handle CreateMutex(bool initial_locked, const std::string& name="Unknown");
} // namespace } // namespace
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment