Vls

  • VideoLAN Server... может щас глуапый вопрос задам... Если кто с ним работает... Подскажите: я вот запускаю его, он мне выдает информацию техническиу, что, мол, то-то то-то загружено, такие-то модули задействованы, а потом выдает сообщение:
    2005-05-21 14:05:26 [WARN/Vls] Received SIGSEGV: Segmentation Violation, exiting...


    И останавливает работу...


    Это предупреждение вообще о чем?


    Спасибо.

  • Не буду спрашивать про версию, мне это всё-равно ничего не даст. Но VLS уже никто не пользуется:

    Цитата

    Most of the VLS functionality can now be found in the much better VLC program. Usage of VLC instead of VLS is advised.

    Пожалуйста зарегистрируйся для просмотра данной ссылки на страницу.

  • Signal: Segmentation Violation (SegmentationFault)


    This is raised when the program attempts has a bad memory reference such as:


    * The pointer is NULL.
    * Address not mapped to object (eg, the memory is unallocated, and unmapped by the OS)
    * Invalid Permission for mapped object (accessing memory that permissions deny).


    This is almost invariably a programming fault.


    The default action for this signal is to cause the program to terminate and dump core.


    A classic example is to dereference a pointer in C that is either uninitialised, or has already been freed. Here is some C code:



    Пожалуйста зарегистрируйся для просмотра данной ссылки на страницу.