*** empty log message ***

svn path=/trunk/boinc/; revision=11747
This commit is contained in:
David Anderson 2006-12-30 18:11:25 +00:00
parent e0bef102ab
commit 3433f87bcf
3 changed files with 9 additions and 1 deletions

View File

@ -13882,3 +13882,9 @@ Rom 29 Dec 2006
clientgui/
sg_DlgMessages.cpp, .h
sg_DlgPreferences.cpp, .h
David 30 Dec 2006
- Manager: forgot to add new files to Makefile.am
clientgui/
Makefile.am

View File

@ -49,7 +49,9 @@ boinc_gui_SOURCES = \
ViewResources.cpp \
ViewStatistics.cpp \
ViewTransfers.cpp \
ViewTransfersGrid.cpp \
ViewWork.cpp \
ViewWorkGrid.cpp \
AccountInfoPage.cpp \
AccountKeyPage.cpp \
AccountManagerInfoPage.cpp \

View File

@ -295,7 +295,7 @@ def lock_file(filename):
file = open(filename,'w')
locks.append(file)
try:
return fcntl.flock(file.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB)
return fcntl.lockf(file.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB)
except IOError:
return -1