On Thu Nov 6 16:07:56 EST 2014, lego12...@yandex.ru wrote: > Hi, all. > > I looked at atexit() and atexitdont() and i don't understand why these > functions are implemented with a static array instead of singly linked list? > May be somebody with a greater plan9 experience can help me with my question.
perhaps a linked list would make sense, but atexits(2) doesn't say which order the functions will be run in. and it doesn't seem like a great idea to depend on atexits running things in a particular order. - erik