mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-07 00:29:20 +00:00
rpcn: fix some msvc warnings
This commit is contained in:
parent
f5c48a00b4
commit
f8009451a9
2 changed files with 8 additions and 4 deletions
|
@ -327,7 +327,11 @@ namespace rpcn
|
||||||
{
|
{
|
||||||
duration = 500ms - (now - last_ping_time);
|
duration = 500ms - (now - last_ping_time);
|
||||||
}
|
}
|
||||||
sem_rpcn.try_acquire_for(duration);
|
|
||||||
|
if (!sem_rpcn.try_acquire_for(duration))
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -441,7 +445,7 @@ namespace rpcn
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void rpcn_client::add_packet(const std::vector<u8> packet)
|
void rpcn_client::add_packet(std::vector<u8> packet)
|
||||||
{
|
{
|
||||||
std::lock_guard lock(mutex_packets_to_send);
|
std::lock_guard lock(mutex_packets_to_send);
|
||||||
packets_to_send.push_back(std::move(packet));
|
packets_to_send.push_back(std::move(packet));
|
||||||
|
@ -626,7 +630,7 @@ namespace rpcn
|
||||||
{
|
{
|
||||||
// TODO: add a check for status?
|
// TODO: add a check for status?
|
||||||
|
|
||||||
const auto sent_packet = forge_request(command, packet_id, data);
|
std::vector<u8> sent_packet = forge_request(command, packet_id, data);
|
||||||
add_packet(std::move(sent_packet));
|
add_packet(std::move(sent_packet));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -310,7 +310,7 @@ namespace rpcn
|
||||||
bool handle_input();
|
bool handle_input();
|
||||||
bool handle_output();
|
bool handle_output();
|
||||||
|
|
||||||
void add_packet(const std::vector<u8> packet);
|
void add_packet(std::vector<u8> packet);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum class recvn_result
|
enum class recvn_result
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue