Get size of a page in bytes.
()
| 2150 | |
| 2151 | |
| 2152 | def get_pagesize(): |
| 2153 | """Get size of a page in bytes.""" |
| 2154 | try: |
| 2155 | page_size = os.sysconf('SC_PAGESIZE') |
| 2156 | except (ValueError, AttributeError): |
| 2157 | try: |
| 2158 | page_size = os.sysconf('SC_PAGE_SIZE') |
| 2159 | except (ValueError, AttributeError): |
| 2160 | page_size = 4096 |
| 2161 | return page_size |
| 2162 | |
| 2163 | |
| 2164 | @contextlib.contextmanager |
no outgoing calls
searching dependent graphs…