Elizabeth Eckman

VP Product at Gallery Systems

Elizabeth Eckman has over 20 years of work experience in the field of product management. Elizabeth began their career in 1998 as a Professional Services Implementation Specialist at Control Software (AssetWorks). In 2002, they moved to AssetWorks LLC, where they held the roles of Product Line Manager M5 and Professional Services and Quality Assurance Manager. In 2015, they joined Harris School Solutions as Vice President of Research and Development and Director of Product Management. Most recently, in 2021, Elizabeth began working at Gallery Systems as VP Product and Product Manager.

I'm trying to make a simple "Hello World" program using the new C++11 threads.

I'm using Visual Studio 2013 and I've added the /std:c++11 flag to the compiler.

#include <iostream> #include <thread> using namespace std; void hello() { cout << "Hello World" << endl; } int main() { thread t(hello); t.join(); return 0; }

However, when I try to compile this, I get the following error:

error C3861: 'thread': identifier not found

I've looked around and it seems like I should be able to use the thread class without any additional libraries.

What am I missing?

Links

Timeline

  • VP Product

    March, 2022 - present

  • Product Manager

    January, 2021

View in org chart