top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

0 votes
325 views
In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?
posted Mar 30, 2016 by Latha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.

With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

answer Mar 30, 2016 by Shivaranjini
...