mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11747
This commit is contained in:
parent
e0bef102ab
commit
3433f87bcf
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue