Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
377 views
in Technique[技术] by (71.8m points)

c++ - How did std::allocators allow to support near/far pointers?

Several sources ([1],[2]) mention that the purpose of std::allocator was to allow for different pointer types (near/far/huge) on 16 bit platforms and parts of this original design still remain in the standard.

My questions are:

  1. How specifically did allocators work with different pointer types those days? For example, if near pointer is meaningless without a value in DS register, how could near pointer allocator be useful?

  2. Was there something in allocator requirements which was removed from standard, totally breaking support for segmented memory? If not, are the same facilities still used on modern 16 bit platforms, shall one exist which has a c++ compiler?

[1] https://www.youtube.com/watch?v=LIb3L4vKZ7U

[2] Josuttis, The C++ Standard Library: A Tutorial and Reference


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...