MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / Notify

Method Notify

tests/gtest/gtest.h:1462–1466  ·  view source on GitHub ↗

Notifies all threads created with this notification to start. Must be called from the controller thread.

Source from the content-addressed store, hash-verified

1460 // Notifies all threads created with this notification to start. Must
1461 // be called from the controller thread.
1462 void Notify() {
1463 pthread_mutex_lock(&mutex_);
1464 notified_ = true;
1465 pthread_mutex_unlock(&mutex_);
1466 }
1467
1468 // Blocks until the controller thread notifies. Must be called from a test
1469 // thread.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected