> On May 12, 2016, at 3:58 PM, Greg Clayton via lldb-commits 
> <lldb-commits@lists.llvm.org> wrote:
> 
> +class EventDataReceipt : public EventData
> +{
> +public:
> +    EventDataReceipt() :
> +        EventData(),
> +        m_predicate(false)
> +    {
> +    }
> +
> +    ~EventDataReceipt() override
> +    {
> +    }
> +
> +    static const ConstString &
> +    GetFlavorString ()
> +    {
> +        static ConstString g_flavor("Process::ProcessEventData");
> +        return g_flavor;
> +    }


I don't think it is a good idea to have this general EventDataReciept claim to 
be a ProcessEventData.

> +
> +    const ConstString &
> +    GetFlavor () const override
> +    {
> +        return GetFlavorString();
> +    }
> +
> +    bool
> +    WaitForEventReceived (const TimeValue *abstime = nullptr, bool 
> *timed_out = nullptr)
> +    {
> +        return m_predicate.WaitForValueEqualTo(true, abstime, timed_out);
> +    }
> +
> +private:
> +    Predicate<bool> m_predicate;
> +    
> +    void
> +    DoOnRemoval (Event *event_ptr)  override
> +    {
> +        m_predicate.SetValue(true, eBroadcastAlways);
> +    }
> +};
> +

Jim

_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to