summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/greenlet/TBrokenGreenlet.cpp
blob: 11a3beab8b0db3ccbc493505fb41d3180968dd43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* -*- indent-tabs-mode: nil; tab-width: 4; -*- */
/**
 * Implementation of greenlet::UserGreenlet.
 *
 * Format with:
 *  clang-format -i --style=file src/greenlet/greenlet.c
 *
 *
 * Fix missing braces with:
 *   clang-tidy src/greenlet/greenlet.c -fix -checks="readability-braces-around-statements"
*/

#include "greenlet_greenlet.hpp"

namespace greenlet {

void* BrokenGreenlet::operator new(size_t UNUSED(count))
{
    return allocator.allocate(1);
}


void BrokenGreenlet::operator delete(void* ptr)
{
    return allocator.deallocate(static_cast<BrokenGreenlet*>(ptr),
                                1);
}

greenlet::PythonAllocator<greenlet::BrokenGreenlet> greenlet::BrokenGreenlet::allocator;

bool
BrokenGreenlet::force_slp_switch_error() const noexcept
{
    return this->_force_slp_switch_error;
}

UserGreenlet::switchstack_result_t BrokenGreenlet::g_switchstack(void)
{
  if (this->_force_switch_error) {
    return switchstack_result_t(-1);
  }
  return UserGreenlet::g_switchstack();
}

}; //namespace greenlet